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!)
A358590 Number of square ordered rooted trees with n nodes. 18

%I #9 Jan 02 2023 00:06:12

%S 1,0,1,0,6,5,36,84,309,890,3163,9835,32979,108252,360696,1192410,

%T 3984552,13276769,44371368,148402665,497072593,1665557619,5586863093,

%U 18750662066,62968243731,211565969511,711187790166,2391640404772,8045964959333,27077856222546

%N Number of square ordered rooted trees with n nodes.

%C We say that a tree is square if it has the same height as number of leaves.

%H Andrew Howroyd, <a href="/A358590/b358590.txt">Table of n, a(n) for n = 1..200</a>

%e The a(1) = 1 through a(6) = 5 ordered trees:

%e o . (oo) . ((o)oo) ((o)(o)o)

%e ((oo)o) ((o)(oo))

%e ((ooo)) ((o)o(o))

%e (o(o)o) ((oo)(o))

%e (o(oo)) (o(o)(o))

%e (oo(o))

%t aot[n_]:=If[n==1,{{}},Join@@Table[Tuples[aot/@c],{c,Join@@Permutations/@IntegerPartitions[n-1]}]];

%t Table[Length[Select[aot[n],Count[#,{},{0,Infinity}]==Depth[#]-1&]],{n,1,10}]

%o (PARI) \\ R(n,f) enumerates trees by height(h), nodes(x) and leaves(y).

%o R(n,f) = {my(A=O(x*x^n), Z=0); for(h=1, n, my(p = A); A = x*(y - 1 + 1/(1 - A + O(x^n))); Z += f(h, A-p)); Z}

%o seq(n) = {Vec(R(n, (h,p)->polcoef(p,h,y)), -n)} \\ _Andrew Howroyd_, Jan 01 2023

%Y For internals instead of height we have A000891, unordered A185650 aerated.

%Y For internals instead of leaves we have A358588, unordered A358587.

%Y The unordered version is A358589, ranked by A358577.

%Y A000108 counts ordered rooted trees, unordered A000081.

%Y A001263 counts ordered rooted trees by nodes and leaves, unordered A055277.

%Y A080936 counts ordered rooted trees by nodes and height, unordered A034781.

%Y A090181 counts ordered rooted trees by nodes and internals, unord. A358575.

%Y Cf. A065097, A109129, A358371, A358552, A358579, A358586.

%K nonn

%O 1,5

%A _Gus Wiseman_, Nov 25 2022

%E Terms a(16) and beyond from _Andrew Howroyd_, Jan 01 2023

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 July 3 01:51 EDT 2024. Contains 373963 sequences. (Running on oeis4.)