A055930 Number of distinct prime factors of totient of (n-th prime)!.
0, 1, 1, 2, 3, 3, 4, 4, 5, 6, 6, 7, 8, 8, 9, 9, 10, 10, 11, 11, 11, 12, 13, 14, 15, 15, 15, 16, 16, 16, 18, 18, 19, 19, 21, 21, 21, 22, 23, 23, 24, 24, 24, 24, 25, 25, 27, 29, 30, 30, 30, 30, 30, 30, 31, 32, 32, 32, 33, 34, 34, 34, 36, 36, 36, 37, 38, 39, 40, 40, 40, 41, 42, 42
Offset: 1
Keywords
Links
- G. C. Greubel, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
Table[PrimeNu[EulerPhi[Prime[n]!]], {n, 1, 50}] (* G. C. Greubel, May 13 2017 *)
-
PARI
for(n=1,50, print1(omega(eulerphi(prime(n)!)) , ", ")) \\ G. C. Greubel, May 13 2017