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.

A003442 Number of nonequivalent dissections of an n-gon into (n-3) polygons by nonintersecting diagonals rooted at a cell up to rotation.

This page as a plain text file.
%I A003442 M2002 #39 Jan 19 2021 11:48:00
%S A003442 1,2,11,48,208,858,3507,14144,56698,226100,898942,3565920,14124496,
%T A003442 55887930,220985795,873396480,3450940830,13633173180,53855628554,
%U A003442 212750148000,840496068160,3320817060132,13122294166126,51860761615488
%N A003442 Number of nonequivalent dissections of an n-gon into (n-3) polygons by nonintersecting diagonals rooted at a cell up to rotation.
%C A003442 Number of dissections of regular n-gon into n-3 polygons without reflection and rooted at a cell. - _Sean A. Irvine_, May 05 2015
%C A003442 The conditions imposed mean that the dissection will always be composed of one quadrilateral and n-4 triangles. - _Andrew Howroyd_, Nov 23 2017
%D A003442 N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
%H A003442 Andrew Howroyd, <a href="/A003442/b003442.txt">Table of n, a(n) for n = 4..200</a>
%H A003442 P. Lisonek, <a href="http://dx.doi.org/10.1006/jsco.1995.1066">Closed forms for the number of polygon dissections</a>, Journal of Symbolic Computation 20 (1995), 595-601.
%H A003442 Ronald C. Read, <a href="http://dx.doi.org/10.1007/BF03031688">On general dissections of a polygon</a>, Aequat. math. 18 (1978) 370-388.
%H A003442 Andrey Zabolotskiy, <a href="/A003442/a003442.png">Illustration for n = 4,5,6</a>
%e A003442 Case n=5: A pentagon can be dissected into 1 quadrilateral and 1 triangle. Either one of these can be chosen as the root cell so a(n)=2. - _Andrew Howroyd_, Nov 23 2017
%o A003442 (PARI)
%o A003442 DissectionsModCyclicRooted(v)={my(n=#v);
%o A003442 my(q=vector(n)); q[1]=serreverse(x-sum(i=3,#v,x^i*v[i])/x + O(x*x^n));
%o A003442 for(i=2, n, q[i]=q[i-1]*q[1]);
%o A003442 my(vars=variables(q[1]));
%o A003442 my(u(m,r)=substvec(q[r]+O(x^(n\m+1)), vars, apply(t->t^m,vars)));
%o A003442 my(p=O(x*x^n) + sum(i=3, #v, my(c=v[i]); if(c, c*sumdiv(i, d, eulerphi(d)*u(d,i/d))/i)));
%o A003442 vector(n,i,polcoeff(p,i))}
%o A003442 { my(v=DissectionsModCyclicRooted(apply(i->if(i>=3&&i<=4,y^(i-3) + O(y^2)), [1..25]))); apply(p->polcoeff(p,1), v[4..#v]) } \\ _Andrew Howroyd_, Nov 22 2017
%Y A003442 Cf. A003443, A003454, A220881, A295622.
%K A003442 nonn
%O A003442 4,2
%A A003442 _N. J. A. Sloane_
%E A003442 More terms from _Sean A. Irvine_, May 05 2015
%E A003442 Name clarified by _Andrew Howroyd_, Nov 22 2017