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”).

A368853
a(n) = n! * (n+1)! * Sum_{k=0..n} (-1)^k/(k! * (k+1)!).
1
1, 1, 7, 83, 1661, 49829, 2092819, 117197863, 8438246137, 759442152329, 83538636756191, 11027100051817211, 1720227608083484917, 313081424671194254893, 65747099180950793527531, 15779303803428190446607439, 4291970634532467801477223409
OFFSET
0,3
FORMULA
a(n) = n * (n+1) * a(n-1) + (-1)^n.
a(n) ~ BesselJ(1,2) * n! * (n+1)!. - Vaclav Kotesovec, Jan 08 2024
PROG
(PARI) a(n) = n!*(n+1)!*sum(k=0, n, (-1)^k/(k!*(k+1)!));
CROSSREFS
Cf. A228229.
Sequence in context: A240170 A231259 A187649 * A316377 A053128 A027819
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Jan 07 2024
STATUS
approved