OFFSET
1,3
COMMENTS
Except for the first term, all terms must be odd numbers. - Harvey P. Dale, Sep 23 2012
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
MATHEMATICA
lst={}; Do[If[PrimeQ[n^6+2], AppendTo[lst, n]], {n, 0, 3000}]; lst
Join[{0}, Select[Range[1, 3001, 2], PrimeQ[#^6+2]&]] (* Harvey P. Dale, Sep 23 2012 *)
PROG
(PARI) select(n->isprime(n^6+2), vector(2000, n, n-1)) /* Joerg Arndt, Sep 21 2012 */
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Sep 21 2012
STATUS
approved