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

A369484
Expansion of (1/x) * Series_Reversion( x / ((1+x) * (1+x+x^3)^2) ).
4
1, 3, 12, 57, 301, 1700, 10045, 61303, 383335, 2443113, 15811317, 103627692, 686402602, 4587643765, 30900426417, 209539509967, 1429344492215, 9801262309209, 67523359213569, 467136798336153, 3243948604314619, 22604271635042853, 158001453530915361
OFFSET
0,2
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..floor(n/3)} binomial(2*n+2,k) * binomial(3*n-k+3,n-3*k).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serreverse(x/((1+x)*(1+x+x^3)^2))/x)
(PARI) a(n, s=3, t=2, u=1) = sum(k=0, n\s, binomial(t*(n+1), k)*binomial((t+u)*(n+1)-k, n-s*k))/(n+1);
CROSSREFS
Sequence in context: A166991 A276366 A243521 * A151498 A103370 A094149
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 23 2024
STATUS
approved