A272410 Primes of the form abs(n^4 - 97n^3 + 3294n^2 - 45458n + 213589) in order of increasing nonnegative n.
213589, 171329, 135089, 104323, 78509, 57149, 39769, 25919, 15173, 7129, 1409, 2341, 4451, 5227, 4951, 3881, 2251, 271, 1873, 4019, 6029, 7789, 9209, 10223, 10789, 10889, 10529, 9739, 8573, 7109, 5449, 3719, 2069, 673, 271, 541, 109, 1949, 5273, 10399, 17669
Offset: 1
Keywords
Examples
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.
Links
- Robert Price, Table of n, a(n) for n = 1..2676
- Eric Weisstein's World of Mathematics, Prime-Generating Polynomials
Crossrefs
Programs
-
Mathematica
n = Range[0, 100]; Select[n^4 - 97n^3 + 3294n^2 - 45458n + 213589, PrimeQ[#] &]