OFFSET
1,1
COMMENTS
The first 12 primes correspond to the values of n from 0 to 11. The first term is a member of A271348.
LINKS
Eric Weisstein's World of Mathematics, Prime-generating Polynomial
EXAMPLE
MATHEMATICA
Select[Table[236241327599+2*n^2, {n, 0, 100}], PrimeQ]
PROG
(PARI) for(n=0, 100, isprime(236241327599+2*n^2) && print1(236241327599+2*n^2, ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Waldemar Puszkarz, Apr 14 2016
STATUS
approved