A110082 Numbers of the form 2^(m-1)*(4^m+2^m-1) where 4^m+2^m-1 is prime.
5, 38, 284, 2168, 133088, 537394688, 140739635806208, 2361183382172302573568, 151115729703628426969088, 20282409604241966234288777068544, 45671926166590726335069952848216804538059849728
Offset: 1
Keywords
Examples
2^1299*(4^1300+2^1300-1) is in the sequence because 4^1300+2^1300-1 is prime.
Links
- F. Firoozbakht, M. F. Hasler, Variations on Euclid's formula for Perfect Numbers, JIS 13 (2010) #10.3.1
Programs
-
Mathematica
Do[If[PrimeQ[4^m+2^m-1], Print[2^(m-1)*(4^m+2^m-1)]], {m, 52}]
Comments