A033279 Number of diagonal dissections of an n-gon into 7 regions.
0, 429, 5005, 32032, 148512, 556920, 1790712, 5116320, 13302432, 32008977, 72177105, 153977824, 313112800, 610569960, 1147334760, 2086063200, 3682355040, 6329047725, 10617908301, 17424259776, 28021470400, 44233892560, 68638798800, 104830165440, 157759842240
Offset: 8
Keywords
Links
- T. D. Noe, Table of n, a(n) for n = 8..1000
- D. Beckwith, Legendre polynomials and polygon dissections?, Amer. Math. Monthly, 105 (1998), 256-257.
- F. R. Bernhart, Catalan, Motzkin and Riordan numbers, Discr. Math., 204 (1999), 73-112.
Crossrefs
Cf. A108263.
Programs
-
Mathematica
Table[(Binomial[n+5,6]Binomial[n-3,6])/7,{n,8,40}] (* Harvey P. Dale, May 27 2013 *)
-
PARI
vector(40, n, n+=7; binomial(n+5, 6)*binomial(n-3, 6)/7) \\ Michel Marcus, Jun 18 2015
Formula
a(n) = binomial(n+5, 6)*binomial(n-3, 6)/7.
G.f.: z^9(429-572z+429z^2-208z^3+65z^4-12z^5+z^6)/(1-z)^13. - Emeric Deutsch, May 29 2005
Comments