login
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.
3
1, 1, 2, 5, 13, 39, 118, 375, 1225, 4079, 13794, 47287, 163962, 573717, 2023800
OFFSET
1,3
EXAMPLE
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))
MATHEMATICA
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}]
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Sep 17 2018
STATUS
approved