A253682 Prime sums of three distinct Mersenne primes (A000668).
41, 137, 2147483777, 162259895799233006081715459850241
Offset: 1
Examples
a(3) = 2147483777 because 2147483777 = (2^2-1) + (2^7-1) + (2^31-1).
Links
- Chris K. Caldwell and G. L. Honaker, Jr., 16225...50241 (33-digits), Prime Curios!
Programs
-
Mathematica
exp={* the first 34 terms in A000043 *}; Do[ s = 2^exp[[p]] + 2^exp[[q]] + 2^exp[[r]] - 3; If[ PrimeQ@ s, Print[{p, q, r, s}]], {r, 3, 34}, {q, 2, r - 1}, {p, q - 1}] (* Robert G. Wilson v, Jan 08 2015 *)
Comments