OFFSET
1,2
REFERENCES
Harvey Dubner, Generalized Fermat primes, J. Recreational Math., 18 (1985): 279-280.
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Simon Plouffe, Table of n, a(n) for n = 1..10000 (first 1000 terms from T. D. Noe)
MATHEMATICA
lst={}; Do[If[PrimeQ[n^64+1], Print[n]; AppendTo[lst, n]], {n, 10^4}]; lst (* Vladimir Joseph Stephan Orlovsky, Aug 21 2008 *)
Select[Range[0, 4200], PrimeQ[(#^64 + 1)] &] (* Vincenzo Librandi, Sep 25 2012 *)
PROG
(PARI) isA006316(n) = isprime(n^64+1) \\ Michael B. Porter, Mar 28 2010
(Magma) [n: n in [1..4200] | IsPrime(n^64 + 1)]; // Vincenzo Librandi, Sep 25 2012
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from Hugo Pfoertner, Jun 22 2003
STATUS
approved