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

A371392
Expansion of (1/x) * Series_Reversion( x * (1-x) / (1+2*x)^3 ).
1
1, 7, 68, 769, 9492, 124014, 1686120, 23610565, 338200148, 4932348226, 72993007672, 1093371638954, 16545598769416, 252567107648604, 3884497559034192, 60136704175071789, 936373570430169300, 14654788984834217850, 230405413840884827160, 3637362857723455772670
OFFSET
0,2
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..n} 2^k * binomial(3*(n+1),k) * binomial(2*n-k,n-k).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serreverse(x*(1-x)/(1+2*x)^3)/x)
(PARI) a(n) = sum(k=0, n, 2^k*binomial(3*(n+1), k)*binomial(2*n-k, n-k))/(n+1);
CROSSREFS
Cf. A113207.
Sequence in context: A297502 A087567 A328046 * A306386 A136629 A197525
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 21 2024
STATUS
approved