[go: up one dir, main page]

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

A371576
G.f. satisfies A(x) = ( 1 + x*A(x)^(3/2) * (1 + x) )^2.
3
1, 2, 9, 44, 240, 1390, 8404, 52426, 334964, 2180928, 14418123, 96525656, 653077411, 4458529390, 30674865164, 212472058410, 1480446579602, 10369560147798, 72972217926122, 515674254743332, 3657933383804959, 26036659997517572, 185905008055923918
OFFSET
0,2
FORMULA
a(n) = 2 * Sum_{k=0..n} binomial(3*k+2,k) * binomial(k,n-k)/(3*k+2).
G.f.: A(x) = B(x)^2 where B(x) is the g.f. of A364475.
PROG
(PARI) a(n, r=2, s=1, t=3, u=0) = r*sum(k=0, n, binomial(t*k+u*(n-k)+r, k)*binomial(s*k, n-k)/(t*k+u*(n-k)+r));
CROSSREFS
Column k=2 of A378323.
Sequence in context: A295809 A229189 A365129 * A246812 A365123 A108308
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 28 2024
STATUS
approved