A358453 Number of transitive ordered rooted trees with n nodes.
1, 1, 1, 2, 4, 8, 17, 37, 83, 190, 444, 1051, 2518, 6090, 14852
Offset: 1
Examples
The a(1) = 1 through a(7) = 17 trees: o (o) (oo) (ooo) (oooo) (ooooo) (oooooo) (o(o)) (o(o)o) (o(o)oo) (o(o)ooo) (o(oo)) (o(oo)o) (o(oo)oo) (oo(o)) (o(ooo)) (o(ooo)o) (oo(o)o) (o(oooo)) (oo(oo)) (oo(o)oo) (ooo(o)) (oo(oo)o) (o(o)(o)) (oo(ooo)) (ooo(o)o) (ooo(oo)) (oooo(o)) (o(o)(o)o) (o(o)(oo)) (o(o)o(o)) (o(oo)(o)) (oo(o)(o)) (o(o)((o)))
Crossrefs
Programs
-
Mathematica
aot[n_]:=If[n==1,{{}},Join@@Table[Tuples[aot/@c],{c,Join@@Permutations/@IntegerPartitions[n-1]}]]; Table[Length[Select[aot[n],Function[t,And@@Table[Complement[t[[k]],Take[t,k]]=={},{k,Length[t]}]]]],{n,10}]
Comments