OFFSET
1,2
COMMENTS
Is anything known about the asymptotics of this sequence?
Should be asymptotic to D*n^(3/2) with D=0.4.... - Benoit Cloitre, Dec 23 2003
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..1000
Eric Weisstein's World of Mathematics, Harmonic Number
Eric Weisstein's World of Mathematics, Continued Fraction
EXAMPLE
1 + 1/2 +1/3 = 11/6 = 1 + 1/(1 + 1/5). So sum of terms of continued fraction is 1 + 1 + 5 = 7.
MATHEMATICA
Table[Plus @@ ContinuedFraction[HarmonicNumber[n]], {n, 60}] (* Ray Chandler, Sep 17 2005 *)
PROG
(PARI) a(n) = vecsum(contfrac(sum(k=1, n, 1/k))); \\ Michel Marcus, Mar 23 2017
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Leroy Quet, Nov 15 2000
STATUS
approved