OFFSET
2,3
COMMENTS
L(n) has the amazing asymptotic development L(n) = e + c(1)/n + c(2)/n^2 + c(3)/n^3 + ... with c(1) = e*(e+1)/(2*(e-1)), c(2) = e*(11*e^3 + 3*e^2 - 51*e - 11)/(24*(e-1)^3), etc., where e = exp(1).
REFERENCES
"A sequence convergent to Napier's Constant" by Alexandru Lupas from the University "Lucian Blaga" of Sibiu / e-mail: lupas(AT)jupiter.sibiu.ro
LINKS
Amiram Eldar, Table of n, a(n) for n = 2..388
Alexandru Lupas, A sequence convergent to Napier's Constant.
MATHEMATICA
a[n_] := Denominator[Sum[k^n, {k, 1, n}]/Sum[k^n, {k, 1, n - 1}]]; Array[a, 17, 2] (* Amiram Eldar, May 14 2022 *)
PROG
(PARI) a(n) = denominator(sum(k = 1, n, k^n)/sum(k = 1, n-1, k^n)); \\ Michel Marcus, Nov 21 2013
CROSSREFS
KEYWORD
easy,frac,nonn
AUTHOR
Benoit Cloitre, Apr 04 2002
STATUS
approved