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

A368839
a(n) = n! * (n+1)! * (n+2)! * Sum_{k=0..n} 1/(k! * (k+1)! * (k+2)!).
2
1, 7, 169, 10141, 1216921, 255553411, 85865946097, 43276436832889, 31159034519680081, 30847444174483280191, 40718626310317929852121, 69873162748505567626239637, 152602987442736159695707367209, 416606155718669715969281112480571
OFFSET
0,2
FORMULA
a(n) = n*(n+1)*(n+2)*a(n-1) + 1.
PROG
(PARI) a(n) = n!*(n+1)!*(n+2)!*sum(k=0, n, 1/(k!*(k+1)!*(k+2)!));
CROSSREFS
Cf. A368840.
Sequence in context: A258299 A012067 A012145 * A351154 A005019 A172027
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Jan 07 2024
STATUS
approved