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

A366200
G.f. A(x) satisfies A(x) = 1 + x*(1 + x)^3*A(x)^3.
4
1, 1, 6, 33, 209, 1425, 10206, 75751, 577494, 4495368, 35582439, 285524184, 2317387098, 18990744137, 156918815760, 1305927563487, 10936673012579, 92098612059051, 779391530714589, 6624730079900931, 56532669993156696, 484156547579505717, 4159926573597719575
OFFSET
0,3
FORMULA
a(n) = Sum_{k=0..n} binomial(3*k,n-k) * binomial(3*k,k)/(2*k+1).
PROG
(PARI) a(n) = sum(k=0, n, binomial(3*k, n-k)*binomial(3*k, k)/(2*k+1));
CROSSREFS
Sequence in context: A361776 A193665 A097662 * A277485 A012522 A012326
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 04 2023
STATUS
approved