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

A369503
Expansion of (1/x) * Series_Reversion( x / ((1+x)^2+x^2)^2 ).
3
1, 4, 24, 168, 1284, 10384, 87360, 756704, 6703168, 60444928, 552990592, 5120101760, 47887472000, 451759449600, 4293634467840, 41073654689280, 395170166443008, 3821262491103232, 37118973530660864, 362035991963869184, 3544080121528001536
OFFSET
0,2
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..floor(n/2)} binomial(2*n+2,k) * binomial(4*n-2*k+4,n-2*k).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serreverse(x/((1+x)^2+x^2)^2)/x)
(PARI) a(n) = sum(k=0, n\2, binomial(2*n+2, k)*binomial(4*n-2*k+4, n-2*k))/(n+1);
CROSSREFS
Sequence in context: A339346 A214377 A331007 * A212277 A246423 A188913
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 25 2024
STATUS
approved