A272401 Primes of the form abs(3n^3 - 183n^2 + 3318n - 18757) in order of increasing nonnegative n.
18757, 15619, 12829, 10369, 8221, 6367, 4789, 3469, 2389, 1531, 877, 409, 109, 41, 59, 37, 229, 499, 829, 1201, 1597, 1999, 2389, 2749, 3061, 3307, 3469, 3529, 3469, 3271, 2917, 2389, 1669, 739, 419, 1823, 3491, 5441, 7691, 10259, 13163, 16421, 20051, 24071
Offset: 1
Examples
8221 is in this sequence since abs(3*4^3 - 183*4^2 + 3318*4 - 18757) = abs(192-2928+13272-18757) = 8221 is prime.
Links
- Robert Price, Table of n, a(n) for n = 1..2839
- Eric Weisstein's World of Mathematics, Prime-Generating Polynomials
Crossrefs
Programs
-
Mathematica
n = Range[0, 100]; Select[3n^3 - 183n^2 + 3318n - 18757 , PrimeQ[#] &]
Comments