A297929 Lexicographically earliest sequence of distinct prime numbers such that for any n > 1, a(n) is at Hamming distance one from some previous term.
2, 3, 7, 5, 11, 13, 19, 17, 23, 29, 31, 37, 43, 41, 47, 53, 59, 61, 67, 71, 79, 83, 101, 97, 103, 107, 109, 113, 131, 139, 137, 151, 149, 157, 163, 167, 179, 181, 199, 197, 193, 211, 227, 229, 241, 263, 269, 271, 293, 317, 313, 281, 283, 347, 331, 353, 359
Offset: 1
Examples
See illustration of the first terms in Links section.
Links
- Rémy Sigrist, Table of n, a(n) for n = 1..10000
- Rémy Sigrist, Scatterplot of the first 359854 terms (a(359855) is the first term > 2^23)
- Rémy Sigrist, Illustration of the first terms
- Rémy Sigrist, PARI program for A297929
Programs
-
Mathematica
With[{nn = 56}, Nest[Function[a, Append[a, SelectFirst[Prime@ Range[3 nn/2], Function[p, And[FreeQ[a, p], AnyTrue[a, Total@ IntegerDigits[BitXor[p, #], 2] == 1 &]]]]]], {2}, nn]] (* Michael De Vlieger, Jan 14 2018 *)
-
PARI
See Links section.
Comments