cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A336581 Mersenne exponents whose corresponding prime can be expressed as the sum of at least two consecutive primes.

Original entry on oeis.org

5, 7, 13, 17, 61
Offset: 1

Views

Author

Michel Marcus, Aug 30 2020

Keywords

Comments

127 is a term.

Examples

			5 is a term because 2^5-1 = 7 + 11 + 13.
17 is a term because 2^17-1 = 43669 + 43691 + 43711.
		

Crossrefs

Cf. A000043 (Mersenne exponents), A000668, A050936, A067377.

Programs

  • PARI
    isok(m) = my(p=2^m-1); isprime(p) && isA050936(p);