OFFSET
0,4
COMMENTS
In an increasing rooted tree, nodes are numbered and numbers increase as you move away from root.
A rooted tree with a forbidden limb of length k is a rooted tree where the path from any leaf inward hits a branching node or the root within k steps.
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..240
N. J. A. Sloane, Transforms
FORMULA
E.g.f. satisfies A'(x) = exp(A(x) - x^3/6). - corrected by Vaclav Kotesovec, Mar 28 2014
a(n) ~ d^n * (n-1)!, where d = 0.9546118344740519430556804... - Vaclav Kotesovec, Mar 28 2014
In closed form, d = 1/r, where r = 1.04754620033697244977759528695194261... is the root of the equation 1 = Integral_{x=0..r} exp(-x^3/6) dx. - Vaclav Kotesovec, Aug 21 2014
MATHEMATICA
CoefficientList[Assuming[{Element[x, Reals], x > 0}, Series[-Log[1-6^(1/3)*Gamma[1/3]/3 + 1/3*x*ExpIntegralE[2/3, x^3/6]], {x, 0, 20}]], x]*Range[0, 20]! (* Vaclav Kotesovec, Mar 28 2014 *)
PROG
(PARI) {a(n)=local(A=x); for(i=0, n, A=intformal(exp(A-x^3/6+O(x^n)) )); n!*polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", ")) \\ Vaclav Kotesovec, Mar 28 2014
CROSSREFS
KEYWORD
nonn,eigen
AUTHOR
Christian G. Bower, Dec 15 1999
STATUS
approved