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

A379886
E.g.f. A(x) satisfies A(x) = 1/(exp(-x) - x*A(x)^2).
1
1, 2, 15, 247, 6221, 212421, 9181555, 480780875, 29589829785, 2093629793113, 167458531710431, 14942213260220247, 1471585837443194533, 158562898380718019813, 18555214181719160291403, 2343490814996151816116131, 317730224718816177328965425, 46028095309438150072340711601
OFFSET
0,2
FORMULA
a(n) = n! * Sum_{k=0..n} (3*n-3*k+1)^(k-1) * binomial(3*n-3*k+1,n-k)/k!.
PROG
(PARI) a(n) = n!*sum(k=0, n, (3*n-3*k+1)^(k-1)*binomial(3*n-3*k+1, n-k)/k!);
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Seiichi Manyama, Jan 05 2025
STATUS
approved