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

A371426
Expansion of (1/x) * Series_Reversion( x / ((1+x)^2 - x^3) ).
1
1, 2, 5, 13, 34, 87, 212, 471, 858, 740, -3674, -29291, -141951, -576379, -2111677, -7161898, -22646026, -66408560, -176815194, -403468266, -641064024, 337909918, 9269952852, 55908644837, 256989808831, 1033152002312, 3792152422259, 12903091079930, 40749582818221
OFFSET
0,2
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..floor(n/3)} (-1)^k * binomial(n+1,k) * binomial(2*n-2*k+2,n-3*k).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serreverse(x/((1+x)^2-x^3))/x)
(PARI) a(n) = sum(k=0, n\3, (-1)^k*binomial(n+1, k)*binomial(2*n-2*k+2, n-3*k))/(n+1);
CROSSREFS
Cf. A369212.
Sequence in context: A122024 A252932 A318234 * A027931 A218481 A267905
KEYWORD
sign
AUTHOR
Seiichi Manyama, Mar 23 2024
STATUS
approved