OFFSET
1,2
REFERENCES
Harvey Dubner, Generalized Fermat primes, J. Recreational Math., 18 (1985): 279-280.
LINKS
Simon Plouffe, Table of n, a(n) for n = 1..10000 (1000 first terms from T. D. Noe)
Yves Gallot, Generalized Fermat Prime Search.
Simon Plouffe, 146309 terms
MATHEMATICA
Do[ k = 1; While[ PowerMod[ n, 256, 2*k*256 + 1 ] != 2*k*256 && k < 10^3, k++ ]; If[ k == 10^3 && PrimeQ[ n^256 + 1 ], Print[ n ] ], {n, 2, 15000, 2} ]
PROG
(PARI) isA056995(n) = isprime(n^256+1) \\ Michael B. Porter, Apr 01 2010
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Sep 06 2000
STATUS
approved