OFFSET
1,1
COMMENTS
The first five terms are certified primes, according to: factordb/certoverview.php. The others are probable primes. - Lewis Baxter, Jan 05 2021
LINKS
Richard Fischer, Primzahlen mit der Form (B+1)^N+B^N.
Henri Lifchitz & Renaud Lifchitz, Search for : x^1024+y^1024.
MATHEMATICA
Select[Range[1, 10000], PrimeQ[#^1024 + (#+1)^1024] &]
PROG
(PARI) for(n=1, 10000, if(isprime(n^1024 + (n+1)^1024), print1(n, ", ")))
(Magma) [n: n in [1..10000] |IsPrime(n^1024 + (n+1)^1024)]
CROSSREFS
KEYWORD
nonn
AUTHOR
Tim Johannes Ohrtmann, Jun 15 2016
STATUS
approved