A112758 Number of distinct prime factors of n-th 5-smooth number.
0, 1, 1, 1, 1, 2, 1, 1, 2, 2, 2, 1, 2, 2, 2, 1, 1, 3, 1, 2, 2, 2, 2, 2, 2, 3, 1, 2, 2, 2, 1, 3, 2, 2, 2, 3, 1, 1, 2, 2, 3, 2, 2, 3, 2, 2, 2, 2, 3, 1, 2, 1, 3, 2, 3, 2, 2, 3, 2, 2, 2, 2, 2, 3, 3, 2, 2, 1, 3, 2, 3, 1, 2, 2, 2, 3, 1, 3, 2, 2, 3, 2, 3, 3, 2, 2, 1, 3, 2, 2, 3, 2, 2, 2, 2, 3, 3, 2, 3, 2, 2, 3, 2, 3, 2
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..750 from G. C. Greubel)
Programs
-
Mathematica
aa = {}; Do[If[8 n - EulerPhi[30 n] == 0, AppendTo[aa, n]], {n, 1, 100}]; PrimeNu[aa] (* G. C. Greubel, May 07 2017 *) PrimeNu[#]&/@Select[Range[2000],Max[FactorInteger[#][[All,1]]]<6&] (* Harvey P. Dale, Apr 12 2020 *)