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.

Showing 1-2 of 2 results.

A003445 Number of nonequivalent dissections of an n-gon into n-4 polygons by nonintersecting diagonals up to rotation.

Original entry on oeis.org

1, 2, 8, 40, 165, 712, 2912, 11976, 48450, 195580, 784504, 3139396, 12526605, 49902440, 198499200, 788795924, 3131945190, 12428258796, 49295766000, 195464345440, 774857314042, 3071175790232, 12171403236288, 48233597481200, 191138095393700, 757436171945952
Offset: 5

Views

Author

Keywords

Comments

In other words, the number of (n-5)-dissections of an n-gon modulo the cyclic action.
Equivalently, the number of two-dimensional faces of the (n-3)-dimensional associahedron modulo the cyclic action.
The dissection will always be composed of either 1 pentagon and n-5 triangles or 2 quadrilaterals and n-6 triangles. - Andrew Howroyd, Nov 24 2017

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

A diagonal of A295633.

Programs

  • Maple
    C:=n->binomial(2*n,n)/(n+1);
    T31:=proc(n) local t1; global C;
    t1 :=  (n-3)^2*(n-4)*C(n-2)/(4*n*(2*n-5));
    if n mod 5 = 0 then t1:=t1+(4/5)*C(n/5-1) fi;
    if n mod 2 = 0 then t1:=t1+(n-4)*C(n/2-1)/8 fi;
    t1; end;
    [seq(T31(n),n=5..40)];
  • Mathematica
    Table[t1 = (n - 3)^2*(n - 4)*CatalanNumber[n - 2]/(4*n*(2*n - 5)); If[Mod[n, 5] == 0, t1 = t1 + (4/5)*CatalanNumber[n/5 - 1]]; If[Mod[n, 2] == 0, t1 = t1 + (n - 4)*CatalanNumber[n/2 - 1]/8]; t1, {n, 5, 20}] (* T. D. Noe, Jan 03 2013 *)
  • PARI
    \\ See A295495 for DissectionsModCyclic()
    { my(v=DissectionsModCyclic(apply(i->if(i>=3&&i<=5, y^(i-3) + O(y^3)), [1..30]))); apply(p->polcoeff(p, 2), v[5..#v]) } \\ Andrew Howroyd, Nov 24 2017

Formula

See Maple program.

Extensions

Entry revised (following Bowman and Regev) by N. J. A. Sloane, Dec 28 2012
Name clarified by Andrew Howroyd, Nov 25 2017

A003447 Number of nonequivalent dissections of an n-gon into n-3 polygons by nonintersecting diagonals rooted at a cell up to rotation and reflection.

Original entry on oeis.org

1, 2, 7, 26, 108, 434, 1765, 7086, 28384, 113092, 449582, 1783092, 7062611, 27944394, 110494113, 436699670, 1725474562, 6816591452, 26927828642, 106375090796, 420248084468, 1660408588852, 6561147261682, 25930381015756, 102496390643352, 405212762977544
Offset: 4

Views

Author

Keywords

Comments

Number of dissections of regular n-gon into n-3 polygons with reflection and rooted at a cell. - Sean A. Irvine, May 13 2015
The dissection will always be composed of one quadrilateral and n-4 triangles. - Andrew Howroyd, Nov 24 2017

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • PARI
    DissectionsModDihedralRooted(v)={my(n=#v);
    my(q=vector(n)); q[1]=serreverse(x-sum(i=3, #v, x^i*v[i])/x + O(x*x^n));
    for(i=2, n, q[i]=q[i-1]*q[1]);
    my(vars=variables(q[1]));
    my(u(m, r)=substvec(q[r]+O(x^(n\m+1)), vars, apply(t->t^m, vars)));
    my(R=sum(i=1, (#v-1)\2, v[2*i+1]*u(2, i)), Q=sum(i=2, #v\2, v[2*i]*u(2, i-1)), T=sum(i=3, #v, my(c=v[i]); if(c, c*sumdiv(i, d, eulerphi(d)*u(d, i/d))/i)));
    my(p=O(x*x^n) + (R*(x+R)/(1-Q) + Q*(u(2,1)+(x+R)^2/(1-Q)^2)/2 + T)/2);
    vector(n, i, polcoeff(p, i))}
    my(v=DissectionsModDihedralRooted(apply(i->if(i>=3&&i<=4,y^(i-3)+O(y^2)),[1..25]))); apply(p->polcoeff(p,1), v[4..#v])

Extensions

More terms from Sean A. Irvine, May 13 2015
Name clarified by Andrew Howroyd, Nov 24 2017
Showing 1-2 of 2 results.