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

A324770
Number of fully anti-transitive rooted identity trees with n nodes.
8
1, 1, 1, 1, 2, 3, 6, 13, 27, 58, 128, 286, 640, 1452, 3308, 7594, 17512, 40591, 94449, 220672
OFFSET
1,5
COMMENTS
An unlabeled rooted tree is fully anti-transitive if no proper terminal subtree of any branch of the root is a branch of the root. It is an identity tree if there are no repeated branches directly under the same root.
EXAMPLE
The a(1) = 1 through a(7) = 6 fully anti-transitive 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))))))
MATHEMATICA
idall[n_]:=If[n==1, {{}}, Select[Union[Sort/@Join@@(Tuples[idall/@#]&/@IntegerPartitions[n-1])], UnsameQ@@#&]];
Table[Length[Select[idall[n], Intersection[Union@@Rest[FixedPointList[Union@@#&, #]], #]=={}&]], {n, 10}]
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Mar 17 2019
STATUS
approved