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

A376086
a(0) = 1; a(n) = Sum_{k=0..n-1} (3*k+2) * a(k) * a(n-k-1).
2
1, 2, 14, 160, 2444, 45792, 1005480, 25169760, 705321200, 21841420384, 740194188032, 27243674154368, 1082259310732096, 46159435144505600, 2104195645965319680, 102113572703197079040, 5256795948307255075584, 286171738279517073904128, 16427146596936396844976640
OFFSET
0,2
FORMULA
G.f. A(x) satisfies: A(x) = 1 + 2 * x * A(x)^2 + 3 * x^2 * A'(x) * A(x).
MATHEMATICA
a[0] = 1; a[n_] := a[n] = Sum[(3 k + 2) a[k] a[n - k - 1], {k, 0, n - 1}]; Table[a[n], {n, 0, 18}]
nmax = 18; A[_] = 0; Do[A[x_] = 1 + 2 x A[x]^2 + 3 x^2 A'[x] A[x] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Sep 09 2024
STATUS
approved