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.

A354226 a(n) is the number of distinct prime factors of (p^p - 1)/(p - 1) where p = prime(n).

Original entry on oeis.org

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

Views

Author

Luis H. Gallardo, May 20 2022

Keywords

Comments

a(34) > 3, and depends on the full factorization of the 296-digit composite number (139^139 - 1)/138. - Tyler Busby, Jan 22 2023
Sequence continues as ?, 8, ?, 5, 8, 4, 5, ?, 8, ?, 8, 7, 6, 3, 3, ..., where ? represents uncertain terms. - Tyler Busby, Jan 22 2023

Examples

			a(3)=2, since (5^5 - 1)/(5 - 1) = 11*71.
		

Crossrefs

Programs

  • PARI
    a(n) = my(p=prime(n)); omega((p^p-1)/(p-1)); \\ Michel Marcus, May 22 2022
    
  • Python
    from sympy import factorint, prime
    def a(n): p = prime(n); return len(factorint((p**p-1)//(p-1)))
    print([a(n) for n in range(1, 12)]) # Michael S. Branicky, May 23 2022

Formula

a(n) = A001221(A001039(n)).

Extensions

a(18)-a(33) from Amiram Eldar, May 20 2022