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

A371385
Expansion of (1/x) * Series_Reversion( x * (1-3*x)^3 / (1-x) ).
1
1, 8, 109, 1808, 33283, 653696, 13419460, 284479136, 6179728951, 136842057800, 3077436307141, 70095952722752, 1613743723323028, 37490308916974496, 877802418598193488, 20693109628871653184, 490732756789852308223, 11699199238845493854872
OFFSET
0,2
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..n} 2^k * binomial(3*n+k+2,k) * binomial(3*n+1,n-k).
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serreverse(x*(1-3*x)^3/(1-x))/x)
(PARI) a(n) = sum(k=0, n, 2^k*binomial(3*n+k+2, k)*binomial(3*n+1, n-k))/(n+1);
CROSSREFS
Cf. A371363.
Sequence in context: A259233 A322718 A309188 * A098623 A297971 A076151
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 20 2024
STATUS
approved