OFFSET
1,2
COMMENTS
The number of divisors of n is at most 2^(k * log n/log log n) where k is this constant. Equality is attained precisely at n = 6983776800.
LINKS
Indranil Ghosh, Table of n, a(n) for n = 1..150
J. L. Nicolas and G. Robin, Majorations explicites pour le nombre de diviseurs de N, Canadian Mathematical Bulletin 26 (1983), pp. 485-492.
EXAMPLE
1.53793986067512617495790860731212213674986310842521076221457235794311...
MATHEMATICA
L = Log[6983776800]; RealDigits[2 * Log[48] * Log[L] / L / Log[2], 10, 89][[1]] (* Indranil Ghosh, Mar 12 2017 *)
PROG
(PARI) L=log(6983776800); 2*log(48)*log(L)/L/log(2)
CROSSREFS
KEYWORD
cons,nonn
AUTHOR
Charles R Greathouse IV, Feb 25 2017
STATUS
approved