OFFSET
1,1
LINKS
Robert Price, Table of n, a(n) for n = 1..2457
Eric Weisstein's World of Mathematics, Prime-Generating Polynomials
EXAMPLE
112921 is in this sequence since 4^4 + 853*4^3 + 2636*4^2 + 3536*4 + 1753 = 256+54592+42176+14144+1753 = 112921 is prime.
MATHEMATICA
n = Range[0, 100]; Select[n^4 + 853n^3 + 2636n^2 + 3536n + 1753, PrimeQ[#] &]
PROG
(PARI) lista(nn) = for(n=0, nn, if(isprime(p=n^4+853*n^3+2636*n^2+3536*n+1753), print1(p, ", "))); \\ Altug Alkan, Apr 25 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Price, Apr 25 2016
STATUS
approved