A207039 Primes whose binary expansion is not palindromic.
2, 11, 13, 19, 23, 29, 37, 41, 43, 47, 53, 59, 61, 67, 71, 79, 83, 89, 97, 101, 103, 109, 113, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 263, 269, 271, 277, 281, 283, 293, 307, 311, 317
Offset: 1
Programs
-
Mathematica
Select[Table[Prime[n], {n, 200}], IntegerDigits[#, 2] != Reverse[IntegerDigits[#, 2]] &](* Vladimir Joseph Stephan Orlovsky, Feb 26 2012 *)
Comments