Power coincedences

I’ve always been tickled by the fact that 2^10 (1024) is very close to 10^3, and use that fact to very quickly estimate large powers of two, even if they’re unfamilar (e.g. 2^23 == (2^10)^2 * 2^3 ~= (10^3)^2 * 2^3 -> it’s roughly 8 million).

I just realised that there probably are more pairs triples of numbers with this property, and how they might be found. The properties are:

I want to keep this short so I’m not going to write any actual code to search for these triples, or even do a basic search on the internet for existing research into this seemingly obvious “puzzle”.