OFFSET
1,3
COMMENTS
50 is the smallest number not in this sequence.
LINKS
Robert Price, Table of n, a(n) for n = 1..2676
Eric Weisstein's World of Mathematics, Prime-Generating Polynomials
EXAMPLE
4 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
Select[Range[0, 100], PrimeQ[#^4 - 97#^3 + 3294#^2 - 45458# + 213589] &]
PROG
(PARI) is(n)=isprime(abs(n^4-97*n^3+3294*n^2-45458*n+213589)) \\ Charles R Greathouse IV, Feb 20 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Price, Apr 30 2016
STATUS
approved