A127317 Numbers n such that (256^n + 1)/257 is prime.
5, 13, 23029
Offset: 1
Links
- Jack Brennen, Primes of the form (4^p+1)/5^t, Seqfan (Mar 15 2017).
- H. Dubner and T. Granlund, Primes of the Form (b^n+1)/(b+1), J. Integer Sequences, 3 (2000), #P00.2.7.
- H. Lifchitz, Mersenne and Fermat primes field.
Crossrefs
Programs
-
Mathematica
Do[n=8*Prime[k];f=2^n+1;If[PrimeQ[f/257],Print[{n,n/8}]],{k,1,2570}]
Comments