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.

Showing 1-2 of 2 results.

A253850 Mersenne exponents (A000043) that are the sum of the divisors (A000203) of some n.

Original entry on oeis.org

3, 7, 13, 31, 127
Offset: 1

Views

Author

Jaroslav Krizek, Jan 16 2015

Keywords

Comments

Also primes p that are the sum of the divisors of some n where 2^sigma(n) - 1 is a Mersenne prime (A000668).
Intersection of A023195 and A000043.
If a(6) exists, it must be greater than A000043(48) = 57885161, and also not equal to any of the Mersenne prime exponents 74207281, 77232917, 82589933, 136279841. - Gord Palameta, Oct 22 2024

Examples

			Mersenne exponent 7 is in the sequence because sigma(4) = 7.
Mersenne exponent 31 is in the sequence because there are two numbers n (16 and 25) with sigma(n) = 31.
		

Crossrefs

Programs

  • Magma
    Set(Sort([SumOfDivisors(n): n in[1..10000] | IsPrime((2^SumOfDivisors(n))- 1)]));

A253851 Mersenne primes (A000668) of the form 2^sigma(n) - 1 for some n.

Original entry on oeis.org

7, 127, 8191, 2147483647, 170141183460469231731687303715884105727
Offset: 1

Views

Author

Jaroslav Krizek, Jan 16 2015

Keywords

Comments

Numbers n such that 2^sigma(n) - 1 is a Mersenne primes are given in A253849.
Sequence of corresponding values of sigma(n) are given in A253850 and each term of this sequence must be a prime from the sequence of Mersenne exponents (A000043).
If a(6) exists, it must be bigger than A000668(43) = 2^30402457-1.

Examples

			Mersenne prime 2147483647 is in the sequence because there are two numbers n (16 and 25) with 2^sigma(n) - 1 = 2^31 - 1 = 2147483647.
		

Crossrefs

Programs

  • Magma
    Set(Sort([(2^SumOfDivisors(n))-1: n in[1..10000] | IsPrime((2^SumOfDivisors(n))-1)]));
Showing 1-2 of 2 results.