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.

A092562 Semiprimes of the form 2^k + 1.

Original entry on oeis.org

9, 33, 65, 129, 2049, 4097, 8193, 131073, 524289, 1048577, 8388609, 268435457, 2147483649, 4294967297, 1099511627777, 8796093022209, 2305843009213693953, 18446744073709551617, 604462909807314587353089, 4951760157141521099596496897
Offset: 1

Views

Author

Zak Seidov, Feb 27 2004

Keywords

Examples

			2049 is a member because 2049 = 2^11+1 = 3*683.
		

Crossrefs

Corresponding k: A092559.

Programs

  • Magma
    IsSemiprime:=func; [s: n in [2..100] | IsSemiprime(s) where s is 2^n+1]; // Vincenzo Librandi, Sep 21 2012
  • Mathematica
    Select[Table[2^n + 1, {n, 100}], PrimeOmega[#] == 2&] (* Vincenzo Librandi, Sep 21 2012 *)

Formula

a(n) = A000051(A092559(n)). - Amiram Eldar, Jun 18 2022