login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A316471
Number of locally disjoint rooted identity trees with n nodes, meaning no branch overlaps any other branch of the same root.
21
1, 1, 1, 2, 3, 6, 11, 21, 43, 89, 185, 391, 840, 1822, 3975, 8727, 19280, 42841, 95661, 214490
OFFSET
1,4
EXAMPLE
The a(7) = 11 locally disjoint rooted identity 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)))
MATHEMATICA
strut[n_]:=strut[n]=If[n===1, {{}}, Select[Join@@Function[c, Union[Sort/@Tuples[strut/@c]]]/@IntegerPartitions[n-1], UnsameQ@@#&&Select[Tuples[#, 2], UnsameQ@@#&&(Intersection@@#=!={})&]=={}&]];
Table[Length[strut[n]], {n, 20}]
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Jul 04 2018
STATUS
approved