OFFSET
1,2
COMMENTS
In an increasing rooted tree, nodes are numbered and numbers increase as you move away from root.
LINKS
FORMULA
E.g.f. satisfies 2*A(x) = x - 1 + A'(x) - log(1-A(x)).
From Paul D. Hanna, Sep 11 2010: (Start)
E.g.f. satisfies: (1+A(x))*sqrt(1-A(x)^2) = exp(x).
E.g.f.: A(x) = Series_Reversion[ log((1+x)*sqrt(1-x^2)) ]. (End)
a(n) ~ 2^(n-2) * sqrt(3) * n^(n-1) / (exp(n) * (log(27/16))^(n-1/2)). - Vaclav Kotesovec, Jan 08 2014
MATHEMATICA
Rest[CoefficientList[InverseSeries[Series[Log[(1+x)*Sqrt[1-x^2]], {x, 0, 20}], x], x] * Range[0, 20]!] (* Vaclav Kotesovec, Jan 08 2014 *)
PROG
(PARI) {a(n)=n!*polcoeff(serreverse(log((1+x)*sqrt(1-x^2+O(x^(n+2))))), n)} \\ Paul D. Hanna, Sep 11 2010
CROSSREFS
KEYWORD
nonn
AUTHOR
Christian G. Bower, Jun 07 2005
STATUS
approved