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

A371398
Expansion of (1/x) * Series_Reversion( x / ( (1+x) * (1+2*x)^3 ) ).
1
1, 7, 67, 741, 8909, 113107, 1492103, 20251945, 280978681, 3967031839, 56811348235, 823250855181, 12049087175493, 177857857845675, 2644773866954255, 39581787842355409, 595745692419162737, 9011736489133233463, 136932249972928786387
OFFSET
0,2
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..n} 2^k * binomial(3*(n+1),k) * binomial(n+1,n-k).
PROG
(PARI) my(N=20, 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(n+1, n-k))/(n+1);
CROSSREFS
Essentially the same as A243675.
Cf. A034015.
Sequence in context: A340973 A199756 A038386 * A243675 A364924 A082578
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 21 2024
STATUS
approved