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.

A363374 Numbers k such that 2^k - 3 is a semiprime.

Original entry on oeis.org

8, 11, 13, 15, 17, 18, 21, 23, 25, 30, 32, 33, 34, 35, 36, 37, 40, 44, 54, 58, 60, 61, 71, 73, 92, 95, 101, 102, 106, 144, 160, 164, 183, 200, 209, 210, 216, 241, 244, 270, 273, 274, 281, 293, 309, 313, 344, 365, 422, 430, 461, 475, 477, 480, 504, 509, 556, 579, 597, 609, 612, 631, 650
Offset: 1

Views

Author

Kevin P. Thompson, May 29 2023

Keywords

Comments

The numbers 717, 720, 759 are also terms with 713 being the only remaining unknown below them.

Examples

			11 is a member because 2^11 - 3 = 2045 = 5 * 409 is a semiprime.
		

Crossrefs

Cf. A085724.

Programs

  • Mathematica
    Select[Range[700],PrimeOmega[2^#-3]==2&] (* Harvey P. Dale, Dec 14 2024 *)