A355985 Primes whose reversal is a multiple of 16.
23, 61, 211, 257, 449, 487, 821, 829, 863, 2131, 2137, 2179, 2551, 2557, 2591, 2593, 2707, 2741, 2749, 2789, 2939, 2971, 4013, 4019, 4051, 4057, 4091, 4093, 4099, 4201, 4241, 4243, 4283, 4289, 4621, 4663, 4813, 4817, 6121, 6163, 6311, 6317, 6353, 6359, 6397
Offset: 1
Examples
257 is a term since 257 is prime and 752 = 16 * 47.
Crossrefs
Programs
-
Mathematica
Select[Prime[Range[1000]], Divisible[IntegerReverse[#], 16] &] (* Amiram Eldar, Jul 29 2022 *)
-
PARI
is(n) = { fromdigits(Vecrev(digits(n)))%16==0 && isprime(n) } \\ Rémy Sigrist, Jul 29 2022
Extensions
More terms from Rémy Sigrist, Jul 29 2022