login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A035351
Number of labeled rooted polygonal cacti with bridges (mixed Husimi trees) with n nodes.
2
1, 2, 12, 124, 1810, 34056, 783874, 21331136, 669902076, 23845794400, 948733833256, 41721533664768, 2009539243299328, 105209055401980544, 5948937678563109000, 361296961279074942976, 23456120142707873968336, 1621073894248128387746304
OFFSET
1,2
FORMULA
E.g.f. satisfies A(x) = x*exp((2*A(x)-A(x)^2)/(2-2*A(x))).
a(n) ~ (1-s)^2 * sqrt(2/((2-s)*(1+s-s^2))) * n^(n-1) / (s * exp((2+(s-4)*s)/(2-2*s)))^n, where s = 1/3*(4-2/(-17+3*sqrt(33))^(1/3) + (-17+3*sqrt(33))^(1/3)) = 0.456310987307923638429144... is the root of the equation 6*s - 4*s^2 + s^3 = 2. - Vaclav Kotesovec, Jan 08 2014
MAPLE
A:= proc(n) option remember; if n<=0 then x else x* exp((2*A(n-1) -A(n-1)^2)/ (2-2*A(n-1))) fi end: a:= n-> coeff(series(A(n-1), x=0, n+1), x, n)*n!: seq(a(n), n=1..20); # Alois P. Heinz, Aug 20 2008
MATHEMATICA
Rest[CoefficientList[InverseSeries[Series[x/E^(((x-2)*x)/(2*(x-1))), {x, 0, 20}], x], x] * Range[0, 20]!] (* Vaclav Kotesovec, Jan 08 2014 *)
KEYWORD
nonn,eigen
AUTHOR
Christian G. Bower, Nov 15 1998
EXTENSIONS
More terms from Alois P. Heinz, Aug 20 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 24 03:45 EDT 2024. Contains 376185 sequences. (Running on oeis4.)