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

A368854
a(n) = n! * (n+1)! * (n+2)! * Sum_{k=0..n} (-1)^k/(k! * (k+1)! * (k+2)!).
1
1, 5, 121, 7259, 871081, 182927009, 61463475025, 30977591412599, 22303865817071281, 22080827158900568189, 29146691849748750009481, 50015723214168855016269395, 109234339499744779355532358681, 298209746834303247640603339199129
OFFSET
0,2
FORMULA
a(n) = n * (n+1) * (n+2) * a(n-1) + (-1)^n.
a(n) ~ c * n!*(n+1)!*(n+2)!, where c = hypergeom([], [2, 3], -1)/2 = 0.42008149848198278018826635149001977031641229888902795699817... - Vaclav Kotesovec, Jan 08 2024
PROG
(PARI) a(n) = n!*(n+1)!*(n+2)!*sum(k=0, n, (-1)^k/(k!*(k+1)!*(k+2)!));
CROSSREFS
Cf. A368839.
Sequence in context: A012046 A012151 A012156 * A290167 A193479 A324089
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Jan 07 2024
STATUS
approved