[go: up one dir, main page]

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

A369618 revision #7

A369618
Expansion of (1/x) * Series_Reversion( x / (1/(1-x) + x^2) ).
2
1, 1, 3, 8, 26, 87, 308, 1122, 4196, 15995, 61953, 243091, 964307, 3860820, 15581231, 63318119, 258874412, 1064093055, 4394851631, 18229191263, 75904152261, 317161817092, 1329465389854, 5589012748902, 23558679647629, 99548061405442, 421598837336178
OFFSET
0,3
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..floor(n/2)} binomial(n+1,k) * binomial(2*n-3*k,n-2*k).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serreverse(x/(1/(1-x)+x^2))/x)
(PARI) a(n) = sum(k=0, n\2, binomial(n+1, k)*binomial(2*n-3*k, n-2*k))/(n+1);
CROSSREFS
Sequence in context: A148811 A148812 A148813 * A148814 A161938 A189177
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 27 2024
STATUS
proposed