A276261 Centered 21-gonal primes.
127, 211, 757, 2521, 2857, 6301, 8527, 16381, 19867, 23689, 24697, 27847, 32341, 37171, 38431, 42337, 66361, 68041, 82237, 89839, 97777, 103951, 114661, 140071, 152461, 162751, 170689, 192781, 204331, 216217, 231547, 240997, 284131, 308827, 353557, 357421, 385057, 389089
Offset: 1
Keywords
Links
- OEIS Wiki, Centered polygonal numbers
- Eric Weisstein's World of Mathematics, Centered Polygonal Number
- Index entries for sequences related to centered polygonal numbers
Crossrefs
Cf. similar sequences of the centered k-gonal primes: A125602 (k = 3), A027862 (k = 4), A145838 (k = 5), A002407 (k = 6), A144974 (k = 7), A090562 (k = 10), A262344 (k = 11), A262493 (k = 13), A264821 (k = 14), A264822 (k = 15), A264823 (k = 16), A264824 (k = 17), A264825 (k = 18), A264844 (k = 19), A264845 (k = 20), A201715 (k = 24).
Programs
-
Mathematica
Intersection[Table[(21 k^2 + 21 k + 2)/2, {k, 0, 1000}], Prime[Range[33000]]]
-
PARI
lista(nn) = for(n=1, nn, if(isprime(p=(21*n^2 + 21*n + 2)/2), print1(p, ", "))); \\ Altug Alkan, Aug 26 2016
Comments