OFFSET
1,1
LINKS
Robert Price, Table of n, a(n) for n = 1..2676
Eric Weisstein's World of Mathematics, Prime-Generating Polynomials
EXAMPLE
78509 is in this sequence since abs(4^4 - 97*4^3 + 3294*4^2 - 45458*4 + 213589) = abs(256-6208+52704-181832+213589) = 78509 is prime.
MATHEMATICA
n = Range[0, 100]; Select[n^4 - 97n^3 + 3294n^2 - 45458n + 213589, PrimeQ[#] &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Price, Apr 30 2016
STATUS
approved