14 comments

[ 0.22 ms ] story [ 49.3 ms ] thread
Is this sort of toying with numbers just for fun, or does it in fact reveal something interesting about primes or mathematics in general?
Sounds like just a bit of fun to me. For one, emirp-hood depends on the number base, which means it’s not intrinsic to the number, but depends on some arbitrary choice of representation. Generally, things like that don’t indicate anything deep.
Is there a better way to check for an emirp other than checking if the number is prime, and then checking if its reverse is also prime?
I can think of a couple of things off the top of my head:

- You can reject numbers that start with 2,4,5,6 or 8 since their reverse won't be prime.

- If you're searching through a range of numbers for emirps avoid checking for the same pair twice. For example if you start at 1 and check for emirps, by the time you're checking 311 you've already checked 113 so you don't need to check 311.

What's so special about base 10 other than that it's the number of fingers that humans (usually) have?
I do also find the amount of recreational math focused on base 10 to be disproportionate to the interestingness of base 10.
Well, it's the base in which we label all other bases. In base twelve, 'base 12'(decimal) is written 'base 10'!

:D