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.

A000063 Symmetrical dissections of an n-gon.

Original entry on oeis.org

1, 1, 2, 4, 5, 14, 14, 39, 42, 132, 132, 424, 429, 1428, 1430, 4848, 4862, 16796, 16796, 58739, 58786, 208012, 208012, 742768, 742900, 2674426, 2674440, 9694416, 9694845, 35357670, 35357670, 129643318, 129644790, 477638700, 477638700, 1767258328, 1767263190, 6564120288
Offset: 5

Views

Author

Keywords

Comments

This sequence, S_n in Guy's 1958 paper, counts triangulations of a regular n-gon into n-2 triangles such that the only symmetries of the triangulation are the identity and a single reflection ("symmetry of a kite"). Triangulations related by a symmetry of the underlying n-gon do not count as distinct. - Joseph Myers, Jun 21 2012
A000108 is a subsequence, see formula. - Ralf Stephan, Aug 19 2004 (edited, Joerg Arndt, Aug 31 2014)

References

  • R. K. Guy, Dissecting a polygon into triangles, Bull. Malayan Math. Soc., Vol. 5, pp. 57-60, 1958.
  • R. K. Guy, Dissecting a polygon into triangles, Research Paper #9, Math. Dept., Univ. Calgary, 1967.
  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Programs

  • Mathematica
    c[n_Integer] := CatalanNumber[n]; c[] = 0; a[n] := c[Floor[n/2]-1] - c[n/4-1] - c[n/6-1]; Array[a, 40, 5] (* Jean-François Alcover, Feb 03 2016, after Joseph Myers *)
  • PARI
    C(n)=if(type(n)==type(1), binomial(2*n,n)/(n+1), 0);
    a(n)=C(floor(n/2)-1) - C(n/4-1) - C(n/6-1);
    vector(66,n, a(n+4))
    \\ Joerg Arndt, Aug 31 2014

Formula

a(2n+3) = A000108(n), n>0. - M. F. Hasler, Mar 25 2012
a(n) = Catalan(floor(n/2) - 1) - Catalan(n/4 - 1) - Catalan (n/6 - 1), where Catalan(x) = 0 for noninteger x (from Guy's 1958 paper). - Joseph Myers, Jun 21 2012

Extensions

Extended by Joseph Myers, Jun 21 2012