OFFSET
1,2
LINKS
M. F. Hasler, Table of n, a(n) for n = 1..100
FORMULA
A061355(n) = denominator(Sum_{k=1..n} 1/k!).
a(n) = numerator(exp(1)*gamma(n + 1,1)/gamma(n + 1) - 1). - Gerry Martens, May 31 2018
(exp(x)-1) / (1-x) is the o.g.f. for the sequence of fractions. - Joerg Arndt, Jun 01 2018
EXAMPLE
1, 3/2, 5/3, 41/24, 103/60, 1237/720, 433/252, 69281/40320, 62353/36288, 6235301/3628800, 8573539/4989600, 164611949/
95800320, 5349888343/3113510400, ...
MAPLE
a:= n-> numer(add(1/i!, i=1..n)): seq(a(n), n=1..23); # Zerinvary Lajos, Mar 28 2007
MATHEMATICA
Numerator[Table[Sum[1/k!, {k, 1, n}], {n, 1, 30}]]
PROG
(PARI) a(n) = numerator(sum(k=1, n, 1/k!)); \\ Michel Marcus, Jun 01 2018
CROSSREFS
KEYWORD
frac,nonn
AUTHOR
Alexander Adamchuk, Jun 30 2006
STATUS
approved