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

A368840
a(n) = n! * (n+1)! * (n+2)! * Sum_{k=0..n} 1/(6^(n-k) * k! * (k+1)! * (k+2)!).
2
1, 2, 9, 91, 1821, 63736, 3569217, 299814229, 35977707481, 5936321734366, 1305990781560521, 373513363526309007, 135958864323576478549, 61861283267227297739796, 34642318629647286734285761, 23556776668160154979314317481
OFFSET
0,2
LINKS
FORMULA
a(n) = binomial(n+2,3)*a(n-1) + 1.
MATHEMATICA
nxt[{n_, a_}]:={n+1, a*Binomial[n+3, 3]+1}; NestList[nxt, {0, 1}, 20][[;; , 2]] (* Harvey P. Dale, May 26 2024 *)
PROG
(PARI) a(n) = n!*(n+1)!*(n+2)!*sum(k=0, n, 1/(6^(n-k)*k!*(k+1)!*(k+2)!));
CROSSREFS
Cf. A368839.
Sequence in context: A059477 A136553 A266293 * A224323 A240650 A356566
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Jan 07 2024
STATUS
approved