OFFSET
1,2
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..873
Elżbieta Liszewska, Wojciech Młotkowski, Some relatives of the Catalan sequence, arXiv:1907.10725 [math.CO], 2019.
FORMULA
G.f.: Series_Reversion(x - 3*x^2 - 4*x^3).
a(n) ~ 2^(n - 3/2) * 3^(n - 3/4) * (27 + 7*sqrt(21))^(n - 1/2) / (7^(1/4) * sqrt(Pi) * n^(3/2) * 5^(2*n - 1)). - Vaclav Kotesovec, Aug 22 2017
EXAMPLE
G.f.: A(x) = x + 3*x^2 + 22*x^3 + 195*x^4 + 1938*x^5 + 20622*x^6 +...
Related expansions.
A(x)^2 = x^2 + 6*x^3 + 53*x^4 + 522*x^5 + 5530*x^6 + 61452*x^7 +...
A(x)^3 = x^3 + 9*x^4 + 93*x^5 + 1008*x^6 + 11370*x^7 + 132111*x^8 +...
where x = A(x) - 3*A(x)^2 - 4*A(x)^3.
MATHEMATICA
Rest[CoefficientList[InverseSeries[Series[x - 3*x^2 - 4*x^3, {x, 0, 20}], x], x]] (* Vaclav Kotesovec, Aug 22 2017 *)
PROG
(PARI) {a(n)=polcoeff(serreverse(x - 3*x^2 - 4*x^3 + x^2*O(x^n)), n)}
for(n=1, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 28 2014
STATUS
approved