login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
These numbers converge to the decimal expansion of log_10(e) = 0.43429448...
LINKS
J. Sondow and E. W. Weisstein, MathWorld: Harmonic Number
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
Sequence in context: A220965 A278036 A221588 * A264112 A372460 A304447
KEYWORD
nonn,base,more
AUTHOR
Eric W. Weisstein, Nov 29 2005
EXTENSIONS
Edited by Charles R Greathouse IV, Aug 05 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 26 11:45 EDT 2024. Contains 373718 sequences. (Running on oeis4.)