A139307 a(n) = (2^(2*p - 1)) - 1, where p is A000043(n).
7, 31, 511, 8191, 33554431, 8589934591, 137438953471, 2305843009213693951, 2658455991569831745807614120560689151, 191561942608236107294793378393788647952342390272950271
Offset: 1
Keywords
Examples
a(5) = 33554431 because A000043(5) = 13 and (2^(2*13 - 1))-1 = 2^25 - 1 = 33554431.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..15
Programs
-
Mathematica
2^(2 * MersennePrimeExponent[Range[10]] - 1) - 1 (* Amiram Eldar, Oct 17 2024 *)
Comments