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-7 of 7 results.

A217748 Number of regions with infinite area in the exterior of a regular n-gon with all diagonals drawn.

Original entry on oeis.org

1, 4, 10, 18, 28, 40, 54, 70, 88, 108, 130, 154, 180, 208, 238, 270, 304, 340, 378, 418, 460, 504, 550, 598, 648, 700, 754, 810, 868, 928, 990, 1054, 1120, 1188, 1258, 1330, 1404, 1480, 1558, 1638, 1720, 1804, 1890, 1978, 2068, 2160, 2254, 2350, 2448, 2548
Offset: 3

Views

Author

Martin Renner, Mar 23 2013

Keywords

Comments

For n > 3 same as A028552(n-3).

Examples

			a(3) = 1 since the equilateral triangle has no diagonals and therefore one exterior region with infinite area.
a(4) = 4 since the two diagonals of the square divide the exterior in four regions with infinite area.
a(5) = 10 since the ten diagonals of the regular pentagon divide the exterior in ten regions with infinite area of two different shapes.
		

Crossrefs

Programs

  • Mathematica
    a[n_] := n*(n - 3); a[3] = 1; Array[a, 50, 3] (* Amiram Eldar, Dec 10 2022 *)
  • PARI
    a(n) = if(n == 3, 1, n*(n-3)); \\ Amiram Eldar, Dec 10 2022

Formula

a(n) = n*(n-3) for n > 3.
a(n) = A217745(n) - A217746(n).
From Amiram Eldar, Dec 10 2022: (Start)
Sum_{n>=3} 1/a(n) = 29/18.
Sum_{n>=3} (-1)^(n+1)/a(n) = 23/18 - 2*log(2)/3. (End)

A217749 Number of triangular regions in the exterior of a regular n-gon with all diagonals drawn.

Original entry on oeis.org

0, 0, 0, 0, 7, 24, 45, 70, 121, 180, 273, 406, 555, 784, 1071
Offset: 3

Views

Author

Martin Renner, Mar 23 2013

Keywords

Crossrefs

A217750 Number of tetragonal regions in the exterior of a regular n-gon with all diagonals drawn.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 18, 50, 88, 156, 260, 392, 555, 848, 1088
Offset: 3

Views

Author

Martin Renner, Mar 23 2013

Keywords

Crossrefs

A217751 Number of pentagonal regions in the exterior of a regular n-gon with all diagonals drawn.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 0, 22, 48, 78, 84, 240, 128, 306
Offset: 3

Views

Author

Martin Renner, Mar 23 2013

Keywords

Crossrefs

A217752 Number of hexagonal regions in the exterior of a regular n-gon with all diagonals drawn.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 39, 14, 75, 112, 221
Offset: 3

Views

Author

Martin Renner, Mar 23 2013

Keywords

Crossrefs

A217753 Number of noncongruent polygonal regions with finite area in the exterior of a regular n-gon with all diagonals drawn.

Original entry on oeis.org

0, 0, 0, 0, 1, 2, 5, 7, 14, 18, 30, 35, 55, 62, 90
Offset: 3

Views

Author

Martin Renner, Mar 23 2013

Keywords

Examples

			a(7) = 1 since the 35 exterior regions of the regular heptagon built by all diagonals consist of one noncongruent polygon, i.e., 1 triangle (7 times), and three different noncongruent regions with infinite area (two 7 times, one 14 times).
a(8) = 2 since the 64 exterior regions of the regular octagon built by all diagonals consist of two different noncongruent polygons, i.e., 2 triangles (one 8 times, one 16 times), and three different noncongruent regions with infinite area (one 8 times, two 16 times).
a(9) = 5 since the 117 exterior regions of the regular 9-gon (nonagon) built by all diagonals consist of five different noncongruent polygons, i.e., 3 triangles (one 9 times, two 18 times) and 2 quadrilaterals (each 9 times), and four different noncongruent regions with infinite area (two 9 times, two 18 times).
		

Crossrefs

A217754 Number of different kinds of polygonal regions with finite area in the exterior of a regular n-gon with all diagonals drawn.

Original entry on oeis.org

0, 0, 0, 0, 1, 1, 2, 2, 4, 3, 4, 4, 4, 4, 5
Offset: 3

Views

Author

Martin Renner, Mar 23 2013

Keywords

Examples

			a(7) = 1 since the 35 exterior regions of the regular heptagon built by all diagonals consist of one kind of polygon (with finite area), i.e., 1 triangle (7 times), and three different regions with infinite area (two 7 times, one 14 times).
a(8) = 1 since the 64 exterior regions of the regular octagon built by all diagonals consist of one kind of polygon (with finite area), i.e., 2 triangles (one 8 times, one 16 times), and three different regions with infinite area (one 8 times, two 16 times).
a(9) = 2 since the 117 exterior regions of the regular 9-gon (nonagon) built by all diagonals consist of two different kinds of polygons (with finite area), i.e., 3 triangles (one 9 times, two 18 times) and 2 quadrilaterals (each 9 times), and four different regions with infinite area (two 9 times, two 18 times).
		

Crossrefs

Showing 1-7 of 7 results.