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.

A344781 Numbers k such that A070313(k) = 2^k - (2*k+1) is a prime number.

Original entry on oeis.org

4, 7, 8, 28, 32, 81, 669, 1108, 1699, 1839, 2319, 9566, 14866, 30855, 35932, 56048, 70915, 72578
Offset: 1

Views

Author

Amiram Eldar, May 28 2021

Keywords

Comments

The corresponding primes are 7, 113, 239, 268435399, 4294967231, 2417851639229258349412189, ...
If k is a term of this sequence then 2^(k-1)*(2^k-(2*k+1)) is a term of A056075 (see Farideh Firoozbakht's comment in A056075).

Examples

			4 is a term since 2^4 - (2*4+1) = 16 - 9 = 7 is a prime.
7 is a term since 2^7 - (2*7+1) = 128 - 15 = 113 is a prime.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[2400], PrimeQ[2^# - 2*# - 1] &]

Extensions

a(16)-a(18) from Michael S. Branicky, May 07 2024