OFFSET
1,1
COMMENTS
The first 16 terms correspond to n from 0 to 15, which makes 25*n^2 + 25*n + 47 a prime-generating polynomial (see the link).
This is a prime-generating polynomial of the form s*n^2 + s*n + p, where s=k^2 and p is prime with s and p containing at most two digits. Prime-generating polynomials of this kind arise for k=1,2,3,5,7. This is the case of k=5; it generates most primes in a row out of the prime k's listed, with 12 for k=3,7, and 14 for k=2. See also A005846 and A007635 (k=1), and A048988 (k=2).
All terms are of the form 10m+7, with their next-to-last digits being 4 or 9.
LINKS
Eric Weisstein's World of Mathematics, Prime-Generating Polynomial
EXAMPLE
197 is a term as it is a prime corresponding to n=2: 25*4 + 25*2 + 47 = 197.
MATHEMATICA
Select[Range[0, 100]//25#^2+25#+47&, PrimeQ]
PROG
(PARI) for(n=0, 100, isprime(p=25*n^2+25*n+47)&& print1(p ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Waldemar Puszkarz, Oct 05 2017
STATUS
approved