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!)
A114467 Number of decimal digits in the numerator of the 10^n-th harmonic number. 2
1, 4, 41, 434, 4346, 43451, 434111, 4342303, 43428680 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
See A114468 for denominators.
Eric Weisstein's link conjectures that for both this sequence and A114468, a(n) ~ (log_10(e) = A002285)*10^n. - Nathan L. Skirrow, Jun 22 2023
LINKS
J. Sondow and E. W. Weisstein, MathWorld: Harmonic Number
MATHEMATICA
Table[IntegerLength[Numerator[HarmonicNumber[10^n]]], {n, 0, 8}](* Harvey P. Dale, May 24 2019 *)
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)).numerator))
print([a(n) for n in range(6)]) # Michael S. Branicky, Jun 22 2023
CROSSREFS
Sequence in context: A109109 A227996 A236528 * A118450 A024383 A110041
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 April 24 17:51 EDT 2024. Contains 371962 sequences. (Running on oeis4.)