A007013 Catalan-Mersenne numbers: a(0) = 2; for n >= 0, a(n+1) = 2^a(n) - 1.
2, 3, 7, 127, 170141183460469231731687303715884105727
Offset: 0
Keywords
References
- P. Ribenboim, The Book of Prime Number Records. Springer-Verlag, NY, 2nd ed., 1989, p. 81.
- W. Sierpiński, A Selection of Problems in the Theory of Numbers. Macmillan, NY, 1964, p. 91.
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
Links
- Chris K. Caldwell, Mersenne Primes.
- Alex Kritov, Explicit Values for Gravitational and Hubble Constants from Cosmological Entropy Bound and Alpha-Quantization of Particle Masses, 2021, see p. 8.
- Double Mersennes Prime Search Status of M(M(p)) where M(p) is a Mersenne prime [outdated link of Will Edgington replaced by _Georg Fischer_, Jan 18 2019].
- Carlos Rivera, Conjecture 15. The New Mersenne Conjecture, The Prime Puzzles & Problems Connection.
- W. Sierpiński, A Selection of Problems in the Theory of Numbers, Macmillan, NY, 1964, p. 91-92. (Annotated scanned copy)
- Eric Weisstein's World of Mathematics, Catalan-Mersenne Number
- Eric Weisstein's World of Mathematics, Double Mersenne Number.
Programs
-
Maple
M:=n->2^n-1; '(M@@i)(2)'$i=0..4; # M. F. Hasler, Nov 15 2006
-
Mathematica
NestList[2^#-1&,2,4] (* Harvey P. Dale, Jul 18 2011 *)
-
PARI
a(n)=if(n,2^a(n-1)-1,2) \\ Charles R Greathouse IV, Sep 07 2016
Formula
a(n) = M(a(n-1)) = M^n(2) with M: n-> 2^n-1. - M. F. Hasler, Nov 15 2006
A180094(a(n)) = n + 1.
Extensions
Edited by Henry Bottomley, Nov 07 2002
Amended title name by Marc Morgenegg, Apr 14 2016
Comments