|
|
A084420
|
|
Least number k such that between k! and (k+1)! there are n powers of ten.
|
|
1
|
|
|
3, 14, 103, 1042, 10158, 100502, 1000617, 10006509, 100019088, 1000004377, 10000170793, 100000442970, 1000001981666, 10000005339905
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,1
|
|
COMMENTS
|
a(15)>100000018000000.
|
|
LINKS
|
|
|
MATHEMATICA
|
LogBase10Stirling[n_] := Floor[ Log[10, 2 Pi n]/2 + n * Log[10, n/E] + Log[10, 1 + 1/(12n) + 1/(288n^2) - 139/(51840n^3) - 571/(2488320n^4) + 163879/(209018880n^5)]]; Do[k = 10^(n - 1); While[ LogBase10Stirling[k + 1] - LogBase10Stirling[k] < n, k++ ]; a[n] = k; Print[ a[n]], {n, 1, 14}]
|
|
CROSSREFS
|
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
|
|
STATUS
|
approved
|
|
|
|