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.

A344516 Numbers k such that (2^k-5, 2^k-3) are twin primes.

Original entry on oeis.org

3, 4, 6, 10, 12, 20, 150
Offset: 1

Views

Author

Amiram Eldar, May 21 2021

Keywords

Comments

No more terms <= A050414(66) = 2086750.

Examples

			3 is a term since (2^3-5, 2^3-3) = (3, 5) are twin primes.
		

Crossrefs

Intersection of A050414 and A059608.
Cf. A001097.

Programs

  • Mathematica
    Select[Range[150], And @@ PrimeQ[2^# - {3,5}] &]