login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A121565
a(n) is the numerator of Sum_{i=1..n} i!/(i^2).
1
0, 1, 3, 13, 11, 127, 427, 13789, 79939, 550339, 4360579, 428990369, 4270982369, 608769618797, 7287249426797, 94552718917997, 1321723383637997, 336624987690165949, 5380569124281525949, 1736468713616949633031, 31234462813230541185031, 593101017091584665985031
OFFSET
0,3
FORMULA
Numerator of Sum_{i=1..n} A000142(i)/A000290(i).
MATHEMATICA
Join[{0}, Accumulate[Table[k!/k^2, {k, 30}]]]//Numerator (* Harvey P. Dale, Feb 21 2024 *)
PROG
(PARI) a(n) = numerator(sum(i=1, n, i!/i^2)); \\ Michel Marcus, Mar 18 2018
CROSSREFS
Cf. A121566 (denominator).
Sequence in context: A273674 A360967 A214811 * A107733 A273076 A272825
KEYWORD
easy,frac,nonn
AUTHOR
Jonathan Vos Post, Aug 07 2006
EXTENSIONS
a(0) corrected by Michel Marcus, Jun 13 2022
a(11) corrected by Georg Fischer, Jan 05 2024
STATUS
approved