login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A276261
Centered 21-gonal primes.
5
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,1
COMMENTS
Primes of the form (21*k^2 + 21*k + 2)/2.
Numbers k such that (21*k^2 + 21*k + 2)/2 is prime: 3, 4, 8, 15, 16, 24, 28, 39, 43, 47, 48, 51, 55, 059, 60, 63, 79, 80, 88, 92, 96, 99, ...
MATHEMATICA
Intersection[Table[(21 k^2 + 21 k + 2)/2, {k, 0, 1000}], Prime[Range[33000]]]
PROG
(PARI) lista(nn) = for(n=1, nn, if(isprime(p=(21*n^2 + 21*n + 2)/2), print1(p, ", "))); \\ Altug Alkan, Aug 26 2016
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).
Sequence in context: A142090 A095730 A325078 * A343319 A045117 A178700
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 26 2016
STATUS
approved