OFFSET
1,3
REFERENCES
F. Bergeron, G. Labelle and P. Leroux, Combinatorial Species and Tree-Like Structures, Camb. 1998, p. 301.
Harary and E. M. Palmer, Graphical Enumeration, p. 71
F. Harary and R. Z. Norman "The Dissimilarity Characteristic of Husimi Trees" Annals of Mathematics, 58 1953, pp. 134-141
F. Harary and G. E. Uhlenbeck "On the Number of Husimi Trees" Proc. Nat. Acad. Sci. USA vol. 39 pp. 315-322 1953
LINKS
FORMULA
E.g.f. satisfies A(x)=x*exp(A(x)^2/(2-2*A(x))).
a(n) ~ (1-s)^2 * sqrt(2/(6-11*s+4*s^2)) * n^(n-1) / (s * exp(1 - s^2/(2*(1-s))))^n, where s = 0.5391888728108891165... is the root of the equation 2-4*s+s^3=0. - Vaclav Kotesovec, Jan 08 2014
MAPLE
A:= proc(n) option remember; if n<=1 then x else convert(series(x* exp(A(n-1)^2/ (2-2*A(n-1))), x=0, n+1), polynom) fi end: a:= n-> coeff(A(n), x, n)*n!: seq(a(n), n=1..30); # Alois P. Heinz, Aug 22 2008
MATHEMATICA
Rest[CoefficientList[InverseSeries[Series[E^(x^2/(2*(x-1)))*x, {x, 0, 20}], x], x] * Range[0, 20]!] (* Vaclav Kotesovec, Jan 08 2014 *)
CROSSREFS
KEYWORD
nonn,eigen
AUTHOR
Christian G. Bower, Nov 15 1998
STATUS
approved