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

A375954
Expansion of e.g.f. 1 / (3 - 2 * exp(x))^(5/2).
2
1, 5, 40, 425, 5605, 88100, 1606015, 33291725, 773093830, 19875432575, 560334083965, 17187010139150, 569768238573805, 20299523526975425, 773470729977309040, 31385122689116278325, 1351135296804805544905, 61507193821772778512900
OFFSET
0,2
FORMULA
a(n) = (1/3) * Sum_{k=0..n} A001147(k+2) * Stirling2(n,k).
MATHEMATICA
nmax=17; CoefficientList[Series[1 / (3 - 2 * Exp[x])^(5/2), {x, 0, nmax}], x]*Range[0, nmax]! (* Stefano Spezia, Sep 03 2024 *)
PROG
(PARI) a001147(n) = prod(k=0, n-1, 2*k+1);
a(n) = sum(k=0, n, a001147(k+2)*stirling(n, k, 2))/3;
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 03 2024
STATUS
approved