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

A379038
G.f. A(x) satisfies A(x) = ( (1 + x) * (1 + x*A(x)^(4/3)) )^3.
1
1, 6, 39, 320, 2907, 28152, 284907, 2977116, 31875708, 347884085, 3855802689, 43283239650, 491083601338, 5622489637407, 64877058557079, 753705528179424, 8808460811302728, 103487549564845200, 1221565052783161763, 14480208437556590346, 172299129911222223324
OFFSET
0,2
FORMULA
G.f.: A(x) = B(x)^3 where B(x) is the g.f. of A364337.
a(n) = 3 * Sum_{k=0..n} binomial(4*k+3,k) * binomial(4*k+3,n-k)/(4*k+3).
PROG
(PARI) a(n) = 3*sum(k=0, n, binomial(4*k+3, k)*binomial(4*k+3, n-k)/(4*k+3));
CROSSREFS
Sequence in context: A067273 A187117 A137972 * A007322 A341728 A058191
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 14 2024
STATUS
approved