OFFSET
1,1
LINKS
Robert Price, Table of n, a(n) for n = 1..2839
Eric Weisstein's World of Mathematics, Prime-Generating Polynomials
EXAMPLE
8221 is in this sequence since abs(3*4^3 - 183*4^2 + 3318*4 - 18757) = abs(192-2928+13272-18757) = 8221 is prime.
MATHEMATICA
n = Range[0, 100]; Select[3n^3 - 183n^2 + 3318n - 18757 , PrimeQ[#] &]
CROSSREFS
KEYWORD
nonn,less
AUTHOR
Robert Price, Apr 28 2016
STATUS
approved