cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A319381 Number of plane trees with n nodes where the sequence of branches directly under any given node is a membership-chain.

Original entry on oeis.org

1, 1, 1, 2, 2, 4, 6, 9, 11, 20, 28, 40, 58, 82, 110, 159, 217, 305, 420, 570, 767, 1042
Offset: 1

Views

Author

Gus Wiseman, Sep 17 2018

Keywords

Examples

			The a(9) = 11 membership-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))
		

Crossrefs

Programs

  • Mathematica
    yanplane[n_]:=If[n==1,{{}},Join@@Table[Select[Tuples[yanplane/@c],And@@MemberQ@@@Partition[#,2,1]&],{c,Join@@Permutations/@IntegerPartitions[n-1]}]];
    Table[Length[yanplane[n]],{n,10}]