login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A088807 Number of prime factors of p^p - 1 where p is prime. 2
1, 2, 3, 4, 4, 5, 4, 3, 6, 9, 4, 9, 7, 6, 5, 7, 5, 8, 9, 7, 15, 8, 6, 10, 12, 13 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
LINKS
MATHEMATICA
PrimeNu/@Table[p^p-1, {p, Prime[Range[30]]}] (* The program takes a long time to run. *) (* Harvey P. Dale, Sep 05 2020 *)
PROG
(PARI) omegaptop(n, m) = { sr=0; forprime(x=2, n, y=omega(x^x-m); print1(y", "); sr += 1.0/y; ); print(); }
(Python)
from sympy import factorint, prime
def a(n): p = prime(n); return len(factorint(p**p-1).values())
print([a(n) for n in range(1, 12)]) # Michael S. Branicky, May 27 2022
CROSSREFS
Cf. A088730.
Sequence in context: A303998 A319712 A319715 * A036371 A036370 A005208
KEYWORD
nonn
AUTHOR
Cino Hilliard, Nov 23 2003
EXTENSIONS
More terms from Ray Chandler, Feb 21 2004
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 14:51 EDT 2024. Contains 371749 sequences. (Running on oeis4.)