OFFSET
1,2
COMMENTS
n^6+n^3+1 is the cyclotomic polynomial Phi(9,n). Damianou, p. 4, claims that there is strong experimental evidence that k^6 + k^3 + 1 is prime for infinitely many values of k. - Jonathan Vos Post, Jan 06 2011 [Comment corrected by Jon E. Schoenfield, Jan 22 2018]
LINKS
Pierre CAMI, Table of n, a(n) for n = 1..37835
Pantelis A. Damianou, On prime values of cyclotomic polynomials, arXiv:1101.1152 [math.NT], 2011.
MATHEMATICA
Select[Range@ 600, PrimeQ[#^6 + #^3 + 1] &] (* Michael De Vlieger, Jan 22 2018 *)
PROG
(Magma) [n: n in [0..500] | IsPrime(n^3*(n^3+1)+1)] // Vincenzo Librandi, Nov 26 2010
(PARI) is(n)=prime(n^6+n^3+1) \\ Charles R Greathouse IV, Feb 17 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Pierre CAMI, Dec 26 2008
EXTENSIONS
Some unclear comments deleted by N. J. A. Sloane, Sep 06 2009
More terms from Vincenzo Librandi, Mar 25 2010
STATUS
approved