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

A366696
G.f. satisfies A(x) = (1 + x)^2 + x*A(x)^3.
1
1, 3, 10, 57, 378, 2730, 20853, 165592, 1353297, 11307168, 96148149, 829336122, 7238765532, 63816716547, 567425771478, 5082596905629, 45820260590481, 415423374916503, 3785371205061825, 34647928319586375, 318419608552433190, 2937021429784279707
OFFSET
0,2
FORMULA
a(n) = Sum_{k=0..n} binomial(2*(2*k+1),n-k) * binomial(3*k,k)/(2*k+1).
PROG
(PARI) a(n) = sum(k=0, n, binomial(2*(2*k+1), n-k)*binomial(3*k, k)/(2*k+1));
CROSSREFS
Cf. A364620.
Sequence in context: A107871 A111270 A307906 * A274585 A333031 A242953
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 16 2023
STATUS
approved