login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A114468
Number of decimal digits in the denominator of the 10^n-th harmonic number.
2
1, 4, 40, 433, 4345, 43450, 434110, 4342302, 43428678
OFFSET
0,2
COMMENTS
These numbers converge to the decimal expansion of log_10(e) = 0.43429448...
LINKS
PROG
(Python)
from gmpy2 import digits, mpq
def a(n): return len(digits(sum(mpq(1, n) for n in range(1, 10**n+1)).denominator))
print([a(n) for n in range(6)]) # Michael S. Branicky, Jun 22 2023
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Eric W. Weisstein, Nov 29 2005
EXTENSIONS
Edited by Charles R Greathouse IV, Aug 05 2010
STATUS
approved