OFFSET
1,3
COMMENTS
32 is the smallest number not in this sequence.
LINKS
Robert Price, Table of n, a(n) for n = 1..2659
Eric Weisstein's World of Mathematics, Prime-Generating Polynomials
EXAMPLE
4 is in this sequence since 82*4^3 - 1228*4^2 + 6130*4 - 5861 = 5248-19648+24520-5861 = 4259 is prime.
MATHEMATICA
Select[Range[0, 100], PrimeQ[82#^3 - 1228#^2 + 6130# - 5861] &]
PROG
(PARI) lista(nn) = for(n=0, nn, if(isprime(abs(82*n^3-1228*n^2+6130*n-5861)), print1(n, ", "))); \\ Altug Alkan, Apr 25 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Price, Apr 25 2016
STATUS
approved