login
A000131
Number of asymmetrical dissections of n-gon.
(Formerly M1535 N0599)
8
2, 5, 21, 61, 214, 669, 2240, 7330, 24695, 83257, 284928, 981079, 3410990, 11937328, 42075242, 149171958, 531866972, 1905842605, 6861162880, 24805692978, 90035940227, 327987890608, 1198853954688, 4395797189206, 16165195705544, 59609156824273, 220373268471398, 816677398144221
OFFSET
7,1
COMMENTS
This sequence, U_n in Guy's 1958 paper, counts triangulations of a regular n-gon into n-2 triangles with no nonidentity symmetries. Triangulations related by a symmetry of the underlying n-gon do not count as distinct. - Joseph Myers, Jun 21 2012
Also the number of chiral pairs of asymmetric polyominoes with n-2 cells of the hyperbolic regular tiling with Schläfli symbol {3,oo}. A stereographic projection of the {3,oo} tiling on the Poincaré disk can be obtained via the Christersson link. Each member of a chiral pair is a reflection but not a rotation of the other. - Robert A. Russell, Sep 18 2025
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).
LINKS
Malin Christersson, Make hyperbolic tilings of images, web page, 2019.
S. J. Cyvin, J. Brunvoll, E. Brendsdal, B. N. Cyvin and E. K. Lloyd, Enumeration of polyene hydrocarbons: a complete mathematical solution, J. Chem. Inf. Comput. Sci., 35 (1995) 743-751.
S. J. Cyvin, J. Brunvoll, E. Brendsdal, B. N. Cyvin and E. K. Lloyd, Enumeration of polyene hydrocarbons: a complete mathematical solution, J. Chem. Inf. Comput. Sci., 35 (1995) 743-751. [Annotated scanned copy]
R. K. Guy, Dissecting a polygon into triangles, Research Paper #9, Math. Dept., Univ. Calgary, 1967. [Annotated scanned copy]
FORMULA
a(n) = (Catalan(n-2) - (n/2)*Catalan(n/2 - 1) - n*Catalan(floor(n/2) - 1) - (n/3)*Catalan(n/3 - 1) + n*Catalan(n/4 - 1) + n*Catalan(n/6 - 1))/(2*n), where Catalan(x) = 0 for noninteger x (derived from Guy's 1958 paper). - Joseph Myers, Jun 21 2012
G.f.: z^2 * (6 + 6*z + 4*G(z) - G(z)^2 - 9*G(z^2) - 6z*G(z^2) - 2z*G(z^3) + 6z^2*G(z^4) + 6z^4*G(z^6)) / 12, where G(z)=1+z*G(z)^2 is the g.f. for A000108. - Robert A. Russell, Sep 18 2025
MATHEMATICA
catalan[n_] := Block[{c = Binomial[2 n, n]/(n + 1)}, If[IntegerQ[c], c, 0]]; f[n_] := (catalan[n - 2] - (n/2) catalan[n/2 - 1] - n*catalan[Floor[n/2] - 1] - (n/3)*catalan[n/3 - 1] + n*catalan[n/4 - 1] + n*catalan[n/6 - 1])/(2 n); Array[f, 28, 7] (* Robert G. Wilson v, Jun 23 2014 *)
Table[(4Binomial[2n, n]/(n+1)-Binomial[2n+2, n+1]/(n+2)-If[OddQ[n], 12Binomial[n-1, (n-1)/2]/(n+1), 18Binomial[n, n/2]/(n+2)-If[OddQ[n/2], 24Binomial[(n-2)/2, (n-2)/4]/(n+2), 0]]-If[1==Mod[n, 3], 6Binomial[(2n-2)/3, (n-1)/3]/(n+2)-If[OddQ[(n-1)/3], 36Binomial[(n-4)/3, (n-4)/6]/(n+2), 0], 0])/12, {n, 5, 30}] (* Robert A. Russell, Sep 18 2025 *)
PROG
(PARI) C(n)=if(denominator(n)==1, binomial(2*n, n)/(n+1), 0)
a(n)=(C(n-2)/n-C(n/2-1)/2-C(n\2-1)-C(n/3-1)/3+C(n/4-1)+C(n/6-1))/2 \\ Charles R Greathouse IV, Apr 05 2013
CROSSREFS
Cf. A000063.
Related polyominoes: A001683(n+2) (oriented), A000207 (unoriented), A369314 (chiral), A208355(n-1) (achiral), A000108 (rooted), A385149 {4,oo}.
Sequence in context: A246167 A359725 A000941 * A328041 A242785 A359672
KEYWORD
nonn,changed
EXTENSIONS
Extended by Joseph Myers, Jun 21 2012
STATUS
approved