login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A006316
Numbers k such that k^64 + 1 is prime.
(Formerly M5368)
35
1, 102, 162, 274, 300, 412, 562, 592, 728, 1084, 1094, 1108, 1120, 1200, 1558, 1566, 1630, 1804, 1876, 2094, 2162, 2164, 2238, 2336, 2388, 2420, 2494, 2524, 2614, 2784, 3024, 3104, 3140, 3164, 3254, 3278, 3628, 3694, 3738, 3750, 4000, 4030, 4058, 4166
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
KEYWORD
nonn,easy
EXTENSIONS
More terms from Hugo Pfoertner, Jun 22 2003
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 24 07:53 EDT 2024. Contains 376188 sequences. (Running on oeis4.)