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”).

A331680
Number of lone-child-avoiding locally disjoint unlabeled rooted trees with n vertices.
12
1, 0, 1, 1, 2, 3, 6, 9, 16, 26, 45, 72, 124, 201, 341, 561, 947, 1571, 2651, 4434, 7496, 12631, 21423, 36332, 61910, 105641, 180924, 310548, 534713, 923047
OFFSET
1,5
COMMENTS
First differs from A320268 at a(11) = 45, A320268(11) = 44.
A rooted tree is locally disjoint if no child of any vertex has branches overlapping the branches of any other unequal child of the same vertex. Lone-child-avoiding means there are no unary branchings.
EXAMPLE
The a(1) = 1 through a(9) = 16 trees (empty column indicated by dot):
o . (oo) (ooo) (oooo) (ooooo) (oooooo) (ooooooo) (oooooooo)
(o(oo)) (o(ooo)) (o(oooo)) (o(ooooo)) (o(oooooo))
(oo(oo)) (oo(ooo)) (oo(oooo)) (oo(ooooo))
(ooo(oo)) (ooo(ooo)) (ooo(oooo))
((oo)(oo)) (oooo(oo)) (oooo(ooo))
(o(o(oo))) (o(o(ooo))) (ooooo(oo))
(o(oo)(oo)) ((ooo)(ooo))
(o(oo(oo))) (o(o(oooo)))
(oo(o(oo))) (o(oo(ooo)))
(o(ooo(oo)))
(oo(o(ooo)))
(oo(oo)(oo))
(oo(oo(oo)))
(ooo(o(oo)))
(o((oo)(oo)))
(o(o(o(oo))))
MATHEMATICA
disjointQ[u_]:=Apply[And, Outer[#1==#2||Intersection[#1, #2]=={}&, u, u, 1], {0, 1}];
strut[n_]:=If[n==1, {{}}, Select[Join@@Function[c, Union[Sort/@Tuples[strut/@c]]]/@Rest[IntegerPartitions[n-1]], disjointQ]];
Table[Length[strut[n]], {n, 10}]
CROSSREFS
The enriched version is A316696.
The Matula-Goebel numbers of these trees are A331871.
The non-locally disjoint version is A001678.
These trees counted by number of leaves are A316697.
The semi-lone-child-avoiding version is A331872.
Sequence in context: A320268 A118033 A048810 * A367205 A327475 A017915
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Jan 25 2020
STATUS
approved