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.

A046799 Number of distinct prime factors of 2^n+1.

Original entry on oeis.org

1, 1, 1, 1, 1, 2, 2, 2, 1, 2, 2, 2, 2, 2, 3, 3, 1, 2, 4, 2, 2, 3, 3, 2, 3, 4, 4, 3, 2, 3, 5, 2, 2, 4, 4, 5, 4, 3, 4, 3, 2, 3, 6, 2, 3, 5, 5, 3, 3, 3, 5, 5, 3, 3, 6, 5, 3, 4, 3, 4, 4, 2, 5, 5, 2, 6, 6, 3, 3, 4, 6, 3, 5, 3, 5, 6, 4, 6, 9, 2, 3, 6, 5, 6, 5, 4, 5, 4, 4, 4, 10, 6, 2, 4, 4, 5, 3, 5, 6, 7, 6, 2, 9, 3, 2
Offset: 0

Views

Author

Keywords

Comments

The length of row n in A060444.

Examples

			For n=7, 129 = 3.43 has 2 prime factors, so a(7) = 2.
		

Crossrefs

Cf. A000051, A001221, A060444, A086257 (number of primitive prime factors).

Programs

  • Mathematica
    PrimeNu[1 + 2^#] & /@ Range[0, 104] (* Jayanta Basu, Jun 29 2013 *)
  • PARI
    a(n) = omega(2^n+1); \\ Michel Marcus, Mar 25 2017

Formula

a(n) = A001221(A000051(n)). - Amiram Eldar, Oct 04 2019