The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A337904 Numbers k such that the decimal expansion of the k-th harmonic number starts with the digits of k, in the same order. 1
1, 43, 714, 715, 9763, 122968, 122969, 1478366, 17239955, 196746419, 2209316467, 24499118645, 268950072605 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The sequence also includes 196746419, 2209316467, 24499118645, 268950072605, 2928264676792, 31663398162514, 340383084842938, 3640820101879826. - Daniel Suteu, Oct 01 2020
LINKS
EXAMPLE
1/1 + 1/2 + 1/3 + ... + 1/1478366 = 14.78366... .
MATHEMATICA
s=0; Do[s=s+(1/n); t=IntegerLength[n]; m=IntegerLength[Floor[s]]; k = Floor[s (10^(t-m))]; If[k==n, Print[n]], {n, 1, 10^11}]
PROG
(PARI) lista(nn) = {my(s=0.); for (n=1, nn, s += 1./n; my(d = digits(floor(10^20*s))); if (fromdigits(vector(#Str(n), j, d[j])) == n, print1(n, ", ")); ); } \\ Michel Marcus, Sep 30 2020
CROSSREFS
Sequence in context: A332946 A229689 A146979 * A278174 A332910 A157722
KEYWORD
nonn,base,more
AUTHOR
Metin Sariyar, Sep 29 2020
EXTENSIONS
a(9) from Jinyuan Wang, Sep 30 2020
a(10)-a(12) from Chai Wah Wu, Oct 12 2020
a(13) from Chai Wah Wu, Oct 14 2020
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 2 17:45 EDT 2024. Contains 373045 sequences. (Running on oeis4.)