A290689 Number of transitive rooted trees with n nodes.
1, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 88, 143, 229, 370, 592, 955, 1527, 2457, 3929, 6304, 10081
Offset: 1
Examples
The a(7) = 8 7-node transitive rooted trees are: (o(oooo)), (oo(ooo)), (o(o)((o))), (o(o)(oo)), (ooo(oo)), (oo(o)(o)), (oooo(o)), (oooooo).
Links
- Robert P. P. McKone, The transitive rooted trees with n=1 to n=22 nodes.
Crossrefs
These trees are ranked by A290822.
Programs
-
Mathematica
nn=18; rtall[n_]:=If[n===1,{{}},Module[{cas},Union[Sort/@Join@@(Tuples[rtall/@#]&/@IntegerPartitions[n-1])]]]; Table[Length[Select[rtall[n],Complement[Union@@#,#]==={}&]],{n,nn}]
Extensions
a(20) from Robert Price, Sep 13 2018
a(21)-a(22) from Robert P. P. McKone, Dec 16 2023
Comments