OFFSET
0,1
COMMENTS
A prime-producing cubic polynomial. Produces 78 distinct primes if we scan the absolute values of the first 100 terms.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..1000
MATHEMATICA
Table[6n^3-263n^2+3469n-12841, {n, 0, 99}]
PROG
(PARI) a(n) = {6*n^3 - 263*n^2 + 3469*n - 12841} \\ Andrew Howroyd, Apr 27 2020
CROSSREFS
KEYWORD
sign,easy
AUTHOR
Pedja Terzic, Oct 29 2012
EXTENSIONS
Signs of terms corrected and a(32) and beyond from Andrew Howroyd, Apr 27 2020
STATUS
approved