login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A324839 Number of unlabeled rooted identity trees with n nodes where the branches of no branch of the root form a subset of the branches of the root. 4
1, 0, 1, 1, 2, 3, 8, 16, 35, 74, 166, 367, 831, 1878, 4299, 9857, 22775, 52777, 122957, 287337 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
COMMENTS
An unlabeled rooted tree is an identity tree if there are no repeated branches directly under the same root.
Also the number of finitary sets with n brackets where no element is also a subset. For example, the a(7) = 8 sets are (o = {}):
{{{{{{o}}}}}}
{{{{o,{o}}}}}
{{{o,{{o}}}}}
{{o,{{{o}}}}}
{{o,{o,{o}}}}
{{{o},{{o}}}}
{{o},{{{o}}}}
{{o},{o,{o}}}
LINKS
EXAMPLE
The a(1) = 1 through a(8) = 16 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))))) (((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
idall[n_]:=If[n==1, {{}}, Select[Union[Sort/@Join@@(Tuples[idall/@#]&/@IntegerPartitions[n-1])], UnsameQ@@#&]];
Table[Length[Select[idall[n], And@@Table[!SubsetQ[#, b], {b, #}]&]], {n, 10}]
CROSSREFS
Sequence in context: A169949 A261984 A100321 * A219751 A121133 A011952
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Mar 18 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 14 22:52 EDT 2024. Contains 374323 sequences. (Running on oeis4.)