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

A368938
Expansion of (1/x) * Series_Reversion( x * (1-x)^2 * (1-x+x^2) ).
1
1, 3, 14, 78, 479, 3129, 21332, 150057, 1081118, 7937589, 59174752, 446744610, 3408616155, 26242751046, 203615759472, 1590550846398, 12498584431503, 98731454253945, 783581338236326, 6245066800130298, 49961547869830135, 401076129627216180, 3229808459696023980
OFFSET
0,2
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..floor(n/2)} (-1)^k * binomial(n+k,k) * binomial(4*n-k+2,n-2*k).
PROG
(PARI) a(n) = sum(k=0, n\2, (-1)^k*binomial(n+k, k)*binomial(4*n-k+2, n-2*k))/(n+1);
(PARI) my(N=30, x='x+O('x^N)); Vec(serreverse(x*(1-x)^2*(1-x+x^2))/x)
CROSSREFS
Sequence in context: A074538 A364739 A366083 * A242426 A001564 A277132
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 10 2024
STATUS
approved