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

A366097
Expansion of (1/x) * Series_Reversion( x*(1+x-x^3)/(1+x)^4 ).
4
1, 3, 12, 56, 287, 1564, 8896, 52217, 313955, 1923775, 11970066, 75427608, 480365740, 3086989128, 19992893796, 130363352003, 855099212950, 5638480905533, 37354602517624, 248515024509486, 1659620048332369, 11121368629141886, 74759777174598964
OFFSET
0,2
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..floor(n/3)} binomial(n+k,k) * binomial(3*n-k+3,n-3*k).
PROG
(PARI) a(n) = sum(k=0, n\3, binomial(n+k, k)*binomial(3*n-k+3, n-3*k))/(n+1);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 29 2023
STATUS
approved