The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A052514 Number of labeled trees of height at most 4. 5
0, 1, 2, 9, 64, 625, 7056, 89929, 1284032, 20351601, 354648160, 6736612201, 138472331328, 3061103815081, 72391319923664, 1823032999274985, 48692068509655936, 1374488205290880481, 40877130077266074048 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: x*exp(x*exp(x*exp(x*exp(x)))).
MAPLE
spec := [S, {T2=Prod(Z, Set(T3)), S=Prod(Z, Set(T1)), T4=Z, T3=Prod(Z, Set(T4)), T1=Prod(Z, Set(T2))}, labeled]: seq(combstruct[count](spec, size=n), n=0..20);
MATHEMATICA
With[{nn=20}, CoefficientList[Series[x*Exp[x*Exp[x*Exp[x*Exp[x]]]], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Jul 23 2018 *)
PROG
(PARI) my(x='x+O('x^20)); concat(0, Vec(serlaplace( x*exp(x*exp(x*exp(x*exp(x)))) ))) \\ G. C. Greubel, May 13 2019
(Magma) m:=20; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!( x*Exp(x*Exp(x*Exp(x*Exp(x)))) )); [0] cat [Factorial(n)*b[n]: n in [1..m-1]]; // G. C. Greubel, May 13 2019
(Sage) m = 20; T = taylor(x*exp(x*exp(x*exp(x*exp(x)))), x, 0, m); [factorial(n)*T.coefficient(x, n) for n in (0..m)] # G. C. Greubel, May 13 2019
CROSSREFS
Cf. A052513 (height at most 3).
Sequence in context: A269649 A335517 A128577 * A274395 A036776 A036777
KEYWORD
easy,nonn
AUTHOR
encyclopedia(AT)pommard.inria.fr, Jan 25 2000
EXTENSIONS
Added "at most" in the title; by Stanislav Sykora, May 12 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 May 21 12:09 EDT 2024. Contains 372736 sequences. (Running on oeis4.)