OFFSET
1,3
COMMENTS
46 is the smallest number not in this sequence.
LINKS
Robert Price, Table of n, a(n) for n = 1..3012
Eric Weisstein's World of Mathematics, Prime-Generating Polynomials
EXAMPLE
4 is in this sequence since abs(-66*4^3 + 3845*4^2 - 60897*4 + 251831) = abs(-4224+61520-243588+251831) = 65539 is prime.
MATHEMATICA
Select[Range[0, 109], PrimeQ[-66#^3 + 3845#^2 - 60897# + 251831] &]
PROG
(PARI) is(n)=isprime(abs(66*n^3-3845*n^2+60897*n-251831)) \\ Charles R Greathouse IV, Feb 20 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Price, Apr 29 2016
STATUS
approved