A159261 Primes of the form 1 + sum_{i=1..n} 2^prime[i] for some n.
5, 13, 173, 2111, 665773, 3142394278117397493736691789093238367784438314557856426157
Offset: 1
Keywords
Programs
-
Mathematica
s=1; Reap[Do[s=s+2^Prime[n]; If[PrimeQ[s], Sow[s]], {n,50}]][[2,1]]
Comments