A342476 Numbers m > 1 such that W(m) > W(k) for all 1 < k < m, where W(k) = omega(k)*log(log(k))/log(k).
2, 3, 4, 5, 6, 10, 12, 14, 15, 30, 210, 2310, 30030, 510510, 9699690, 223092870
Offset: 1
References
- József Sándor, Dragoslav S. Mitrinovic and Borislav Crstici, Handbook of Number Theory I, Springer Science & Business Media, 2005, Chapter V, p. 168.
Links
- Hans-Joachim Kanold, Über einige Ergebnisse aus der kombinatorischen Zahlentheorie, Abh. Braunschweig, Wiss. Ges., Vol. 36 (1984), pp. 203-229. See eq. 96, pp. 219-220.
Programs
-
Mathematica
w[n_] := PrimeNu[n]*Log[Log[n]]/Log[n]; wmax = -1; seq = {}; Do[w1 = w[n]; If[w1 > wmax, wmax = w1; AppendTo[seq, n]], {n, 2, 2500}]; seq
Comments