A319379
Number of plane trees with n nodes where the sequence of branches directly under any given node is a chain of multisets.
Original entry on oeis.org
1, 1, 2, 4, 9, 19, 43, 93, 207, 452, 997, 2176, 4776, 10418, 22781, 49674, 108421
Offset: 1
The a(6) = 19 chain trees:
(((((o))))) ((((oo)))) (((ooo))) ((oooo)) (ooooo)
(((o)(o))) ((o)(oo)) (o(ooo))
(((o(o)))) ((o(oo))) (oo(oo))
((o((o)))) ((oo(o))) (ooo(o))
(o(((o)))) (o((oo)))
(o(o)(o))
(o(o(o)))
(oo((o)))
Cf.
A000081,
A000108,
A001003,
A005043,
A007562,
A118376,
A143363,
A316470,
A319122,
A319378,
A319380,
A319381.
-
submultisetQ[M_,N_]:=Or[Length[M]==0,MatchQ[{Sort[List@@M],Sort[List@@N]},{{x_,Z___},{_,x_,W___}}/;submultisetQ[{Z},{W}]]];
chnplane[n_]:=If[n==1,{{}},Join@@Table[Select[Tuples[chnplane/@c],And@@submultisetQ@@@Partition[#,2,1]&],{c,Join@@Permutations/@IntegerPartitions[n-1]}]];
Table[Length[chnplane[n]],{n,10}]
A319380
Number of plane trees with n nodes where the sequence of branches directly under any given node is a chain of distinct multisets.
Original entry on oeis.org
1, 1, 1, 2, 3, 5, 9, 17, 30, 53, 94, 169, 303, 543, 968, 1728, 3080, 5491, 9776, 17415, 31008
Offset: 1
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)))
-
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}]
A319378
Number of plane trees with n nodes where the sequence of branches directly under any given node with at least two branches has empty intersection.
Original entry on oeis.org
1, 1, 2, 5, 13, 39, 118, 375, 1225, 4079, 13794, 47287, 163962, 573717, 2023800
Offset: 1
The a(5) = 13 locally nonintersecting plane trees:
((((o)))) (((oo))) ((ooo)) (oooo)
(((o)o)) ((oo)o)
((o(o))) (o(oo))
(((o))o) ((o)oo)
(o((o))) (o(o)o)
(oo(o))
Cf.
A000081,
A000108,
A001003,
A005043,
A007562,
A118376,
A143363,
A316470,
A319122,
A319379,
A319380,
A319381,
A319436.
-
monplane[n_]:=If[n==1,{{}},Join@@Table[Select[Tuples[monplane/@c],Or[Length[#]==1,Intersection@@#=={}]&],{c,Join@@Permutations/@IntegerPartitions[n-1]}]];
Table[Length[monplane[n]],{n,10}]
Showing 1-3 of 3 results.