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!)
A319380 Number of plane trees with n nodes where the sequence of branches directly under any given node is a chain of distinct multisets. 4
1, 1, 1, 2, 3, 5, 9, 17, 30, 53, 94, 169, 303, 543, 968, 1728, 3080, 5491, 9776, 17415, 31008 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
EXAMPLE
The a(8) = 17 locally identity chain 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)))
MATHEMATICA
submultisetQ[M_, N_]:=Or[Length[M]==0, MatchQ[{Sort[List@@M], Sort[List@@N]}, {{x_, Z___}, {___, x_, W___}}/; submultisetQ[{Z}, {W}]]];
idchnplane[n_]:=If[n==1, {{}}, Join@@Table[Select[Tuples[idchnplane/@c], And[UnsameQ@@#, And@@submultisetQ@@@Partition[#, 2, 1]]&], {c, Join@@Permutations/@IntegerPartitions[n-1]}]];
Table[Length[idchnplane[n]], {n, 10}]
CROSSREFS
Sequence in context: A339512 A326023 A326117 * A213709 A054187 A014743
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Sep 17 2018
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 15 09:15 EDT 2024. Contains 374324 sequences. (Running on oeis4.)