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.

A122834 Primes in the new Mersenne conjecture; odd primes of the form 2^k+-1 or 4^k+-3.

Original entry on oeis.org

3, 5, 7, 13, 17, 19, 31, 61, 67, 127, 257, 1021, 4093, 4099, 8191, 16381, 65537, 65539, 131071, 262147, 524287, 1048573, 4194301, 16777213, 268435459, 1073741827, 2147483647, 2305843009213693951, 19342813113834066795298819
Offset: 1

Views

Author

T. D. Noe, Sep 12 2006

Keywords

Comments

Let p be a prime in this sequence. Call q=2^p-1 and r=(2^p+1)/3. The new Mersenne conjecture implies that either q and r are both prime or both composite.

References

  • R. K. Guy, Unsolved Problems in Number Theory, Section A3.

Crossrefs

Superset of: A000668, A019434, A228026.
Cf. A000043 (n such that 2^n-1 is prime), A000978 (n such that (2^n+1)/3 is prime), A107360 (the intersection of these).

Programs

  • Mathematica
    nn=100; Union[Select[1+2^Range[16],PrimeQ], Select[ -1+2^Range[2nn],PrimeQ], Select[3+4^Range[nn],PrimeQ], Select[ -3+4^Range[nn],PrimeQ]]