A358454 Number of weakly transitive ordered rooted trees with n nodes.
1, 1, 1, 3, 6, 13, 33, 80, 201, 509, 1330, 3432, 8982, 23559, 62189
Offset: 1
Examples
The a(1) = 1 through a(6) = 13 trees: o (o) (oo) (ooo) (oooo) (ooooo) ((o)o) ((o)oo) ((o)ooo) (o(o)) ((oo)o) ((oo)oo) (o(o)o) ((ooo)o) (o(oo)) (o(o)oo) (oo(o)) (o(oo)o) (o(ooo)) (oo(o)o) (oo(oo)) (ooo(o)) ((o)(o)o) ((o)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],Complement[Union@@#,#]=={}&]],{n,10}]
Comments