This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A052513 #23 Sep 08 2022 08:44:59 %S A052513 0,1,2,9,64,505,4536,46249,526352,6604497,90466480,1341571561, %T A052513 21392282088,364715915161,6616327512536,127187163197865, %U A052513 2581443127409056,55143025567270561,1236226458392407008,29012548251081127753,711157579030313374520,18169564436494014726441 %N A052513 Number of labeled trees of height at most 3. %H A052513 G. C. Greubel, <a href="/A052513/b052513.txt">Table of n, a(n) for n = 0..400</a> %H A052513 INRIA Algorithms Project, <a href="http://ecs.inria.fr/services/structure?nbr=59">Encyclopedia of Combinatorial Structures 59</a> %F A052513 E.g.f.: x*exp(x*exp(x*exp(x))). %p A052513 spec := [S,{S=Prod(Z,Set(T1)), T2=Prod(Z,Set(T3)), T3=Z, T1=Prod(Z,Set(T2))},labeled]: seq(combstruct[count](spec,size=n), n=0..20); %t A052513 nn=20;a=x Exp[x];b=x Exp[a];Range[0,nn]! CoefficientList[Series[x Exp[b],{x,0,nn}],x] (* _Geoffrey Critzer_, Sep 20 2012 *) %o A052513 (PARI) %o A052513 N=33; x='x+O('x^N); %o A052513 egf=x*exp(x*exp(x*exp(x))); %o A052513 v=Vec(serlaplace(egf)); %o A052513 vector(#v+1,n,if(n==1,0,v[n-1])) %o A052513 /* _Joerg Arndt_, Sep 15 2012 */ %o A052513 (Magma) m:=20; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!( x*Exp(x*Exp(x*Exp(x))) )); [0] cat [Factorial(n)*b[n]: n in [1..m-1]]; // _G. C. Greubel_, May 13 2019 %o A052513 (Sage) m = 20; T = taylor(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 %Y A052513 Cf. A000552. %Y A052513 Cf. A052514 (height at most 4). %K A052513 easy,nonn %O A052513 0,3 %A A052513 encyclopedia(AT)pommard.inria.fr, Jan 25 2000