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

A366556
G.f. A(x) satisfies A(x) = 1 + x + x^4*A(x)^3.
4
1, 1, 0, 0, 1, 3, 3, 1, 3, 15, 30, 30, 27, 87, 252, 420, 475, 747, 2064, 4632, 7203, 9933, 19635, 47025, 92013, 144745, 237510, 498498, 1073817, 1969131, 3267411, 5977881, 12462579, 25035747, 45090936, 79414344, 153115299, 311198457, 600883569, 1090988379, 2012793705
OFFSET
0,6
FORMULA
a(n) = Sum_{k=0..floor(n/4)} binomial(2*k+1,n-4*k) * binomial(3*k,k)/(2*k+1).
a(n) = A366592(n) + A366592(n-1).
PROG
(PARI) a(n) = sum(k=0, n\4, binomial(2*k+1, n-4*k)*binomial(3*k, k)/(2*k+1));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 13 2023
STATUS
approved