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

A379139
G.f. A(x) satisfies A(x) = ( (1 + x*A(x)^(1/3)) * (1 + x*A(x)^(2/3)) )^3.
0
1, 6, 33, 185, 1065, 6276, 37711, 230277, 1425180, 8920915, 56382321, 359325561, 2306603557, 14900834070, 96801107625, 631995206707, 4144614844047, 27289670546697, 180339237891360, 1195684324845420, 7951560286540908, 53025939926690233, 354509890878236583
OFFSET
0,2
FORMULA
G.f.: A(x) = B(x)^3 where B(x) is the g.f. of A007863.
a(n) = 3 * Sum_{k=0..n} binomial(n+k+3,k) * binomial(n+k+3,n-k)/(n+k+3).
PROG
(PARI) a(n) = 3*sum(k=0, n, binomial(n+k+3, k)*binomial(n+k+3, n-k)/(n+k+3));
CROSSREFS
Sequence in context: A367850 A180035 A360717 * A286187 A260774 A218182
KEYWORD
nonn,new
AUTHOR
Seiichi Manyama, Dec 15 2024
STATUS
approved