login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A285812
Primes equal to a centered 9-gonal number plus 1.
4
2, 11, 29, 137, 191, 821, 947, 2081, 2927, 3917, 5051, 6329, 11027, 13367, 14879, 15401, 17021, 17579, 21737, 22367, 24977, 36857, 39341, 43661, 47279, 50087, 58997, 62129, 66431, 70877, 95267, 96581, 106031, 113051, 117371, 129287, 130817, 135461, 156521
OFFSET
1,1
LINKS
PROG
(PARI) cpg(m, n) = m*n*(n-1)/2+1 \\ n-th centered m-gonal number
maxk=600; L=List(); for(k=1, maxk, if(isprime(p=cpg(9, k) + 1), listput(L, p))); Vec(L)
CROSSREFS
KEYWORD
nonn
AUTHOR
Colin Barker, Apr 27 2017
STATUS
approved