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

A367040
G.f. satisfies A(x) = 1 + x^2 + x*A(x)^3.
2
1, 1, 4, 15, 70, 360, 1953, 11008, 63837, 378390, 2282205, 13960890, 86411232, 540166219, 3405341160, 21625820793, 138216775785, 888371346825, 5738510504979, 37234351046835, 242567430368298, 1585979835198675, 10403866383915844, 68453912880893025
OFFSET
0,3
FORMULA
a(n) = Sum_{k=0..floor(n/2)} binomial(2*(n-2*k)+1,k) * binomial(3*(n-2*k),n-2*k)/(2*(n-2*k)+1).
PROG
(PARI) a(n) = sum(k=0, n\2, binomial(2*(n-2*k)+1, k)*binomial(3*(n-2*k), n-2*k)/(2*(n-2*k)+1));
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 03 2023
STATUS
approved