OFFSET
1,1
COMMENTS
Primes of the form (11*k^2 - 11*k + 2)/2.
LINKS
OEIS Wiki, Figurate numbers
Eric Weisstein's World of Mathematics, Centered Polygonal Number
Eric Weisstein's World of Mathematics, Prime Number
MAPLE
select(isprime, [(11*k^2-11*k+2)/2$k=1..300])[]; # Alois P. Heinz, May 27 2022
PROG
(PARI) for(n=1, 1e3, if(isprime(k=(11*n^2-11*n+2)/2), print1(k, ", "))) \\ Altug Alkan, Nov 26 2015
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
Ilya Gutkovskiy, Nov 26 2015
EXTENSIONS
a(15)=47059 inserted by Georg Fischer, May 27 2022
STATUS
approved