OFFSET
1,7
COMMENTS
A rooted identity tree is an unlabeled rooted tree with no repeated branches directly under the same root.
EXAMPLE
The a(6) = 1 through a(8) = 12 trees:
((o)((o))) ((o)(o(o))) (o(o)(o(o)))
(o(o)((o))) (((o))(o(o)))
(((o)((o)))) (((o)(o(o))))
((o)(((o)))) ((o)((o(o))))
((o)(o((o))))
((o(o)((o))))
(o((o)((o))))
(o(o)(((o))))
((((o)((o)))))
(((o))(((o))))
(((o)(((o)))))
((o)((((o)))))
MATHEMATICA
rits[n_]:=Join@@Table[Select[Union[Sort/@Tuples[rits/@ptn]], UnsameQ@@#&], {ptn, IntegerPartitions[n-1]}];
Table[Length[Select[rits[n], !UnsameQ@@Cases[#, {__}, {0, Infinity}]&]], {n, 10}]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Mar 21 2019
STATUS
approved