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

A367375
Expansion of the e.g.f. (exp(x) / (5 - 4*exp(x)))^(3/5).
2
1, 3, 21, 243, 3909, 80451, 2016885, 59610771, 2029183653, 78173046243, 3362038875093, 159665003673651, 8298290454862341, 468484406336978307, 28548397948780827957, 1867633303272817927635, 130551162799758211802469, 9710901131124428156535075
OFFSET
0,2
FORMULA
a(n) = Sum_{k=0..n} (-1)^(n-k) * (Product_{j=0..k-1} (5*j+3)) * Stirling2(n,k).
a(0) = 1; a(n) = Sum_{k=1..n} (-1)^k * (2*k/n - 5) * binomial(n,k) * a(n-k).
a(0) = 1; a(n) = 3*a(n-1) + 4*Sum_{k=1..n-1} binomial(n-1,k) * a(n-k).
PROG
(PARI) a(n) = sum(k=0, n, (-1)^(n-k)*prod(j=0, k-1, 5*j+3)*stirling(n, k, 2));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 15 2023
STATUS
approved