login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A274237
Numbers k such that k^8192 + (k+1)^8192 is prime.
3
3508, 5209, 13428, 15347, 16339, 17779, 22548, 37726, 40408
OFFSET
1,1
COMMENTS
The terms correspond only to probable primes.
LINKS
Henri Lifchitz and Renaud Lifchitz, Search for: x^8192+y^8192.
MATHEMATICA
Select[Range[1, 10000], PrimeQ[#^8192 + (#+1)^8192] &]
PROG
(PARI) for(n=1, 10000, if(isprime(n^8192 + (n+1)^8192), print1(n, ", ")))
(Magma) [n: n in [1..10000] |IsPrime(n^8192 + (n+1)^8192)]
KEYWORD
nonn,more
AUTHOR
STATUS
approved