OFFSET
2,1
COMMENTS
Also, least k such that k*log(n) exceeds n. - Amarnath Murthy, Jun 17 2004
LINKS
T. D. Noe, Table of n, a(n) for n = 2..10000
MATHEMATICA
Do[k = 1; While[k*Log[n] <= n, k++ ]; Print[k], {n, 2, 100}] (* Ryan Propper, Sep 17 2005 *)
Array[ Ceiling[#/Log@#] &, 80, 2] (* Robert G. Wilson v, Jan 15 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Dec 27 1999
EXTENSIONS
Edited by N. J. A. Sloane, Sep 15 2008 at the suggestion of R. J. Mathar
STATUS
approved