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

A379024
Expansion of (1/x) * Series_Reversion( x * ((1 - x - x^2)/(1 + x))^4 ).
3
1, 8, 100, 1500, 24846, 438064, 8062518, 153117320, 2978260865, 59031215508, 1187987779084, 24210092837648, 498606095949315, 10361291534825800, 216982960825089730, 4574651332139656108, 97018731642209493810, 2068350691029593934000, 44301394943232879298360
OFFSET
0,2
FORMULA
G.f. A(x) satisfies:
(1) A(x) = exp( Sum_{k>=1} A379026(k) * x^k/k ).
(2) A(x) = ( (1 + x*A(x)) * (1 + x*A(x)^(5/4)) )^4.
(3) A(x) = B(x)^4 where B(x) is the g.f. of A239108.
a(n) = (1/(n+1)) * [x^n] ( (1 + x)/(1 - x - x^2) )^(4*(n+1)).
a(n) = 4 * Sum_{k=0..n} binomial(4*n+k+4,k) * binomial(4*n+k+4,n-k)/(4*n+k+4) = (1/(n+1)) * Sum_{k=0..n} binomial(4*n+k+3,k) * binomial(4*n+k+4,n-k).
PROG
(PARI) a(n) = 4*sum(k=0, n, binomial(4*n+k+4, k)*binomial(4*n+k+4, n-k)/(4*n+k+4));
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Seiichi Manyama, Dec 14 2024
STATUS
approved