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

A376328
G.f. satisfies A(x) = (1 + x*A(x)*(1 + x*A(x)))^5.
1
1, 5, 40, 380, 3970, 44051, 509575, 6077435, 74194780, 922644310, 11646083631, 148827827450, 1921724362880, 25034267112600, 328614891689845, 4342322118727300, 57715241768897445, 771087466276360970, 10349495416322497575, 139486475071720234920, 1886980259513934080860, 25613816043115261657425
OFFSET
0,2
FORMULA
If g.f. satisfies A(x) = (1 + x*A(x)*(1 + x*A(x))^s)^t, then a(n) = (1/(n+1)) * Sum_{k=0..n} binomial(t*(n+1),k) * binomial(s*k,n-k).
G.f.: (1/x) * Series_Reversion( x / (1+x+x^2)^5 ).
G.f.: B(x)^5, where B(x) is the g.f. of A365189.
PROG
(PARI) a(n, s=1, t=5) = sum(k=0, n, binomial(t*(n+1), k)*binomial(s*k, n-k))/(n+1);
(PARI) my(N=30, x='x+O('x^N)); Vec(serreverse(x/(1+x+x^2)^5)/x)
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 20 2024
STATUS
approved