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-10 of 18 results. Next

A007678 Number of regions in regular n-gon with all diagonals drawn.

Original entry on oeis.org

0, 0, 1, 4, 11, 24, 50, 80, 154, 220, 375, 444, 781, 952, 1456, 1696, 2500, 2466, 4029, 4500, 6175, 6820, 9086, 9024, 12926, 13988, 17875, 19180, 24129, 21480, 31900, 33856, 41416, 43792, 52921, 52956, 66675, 69996, 82954, 86800, 102050, 97734, 124271, 129404, 149941
Offset: 1

Views

Author

N. J. A. Sloane, Bjorn Poonen (poonen(AT)math.princeton.edu)

Keywords

Comments

This sequence and A006533 are two equivalent ways of presenting the same sequence.
A quasipolynomial of order 2520. - Charles R Greathouse IV, Jan 15 2013
Also the circuit rank of the n-polygon diagonal intersection graph. - Eric W. Weisstein, Mar 08 2018
This sequence only counts polygons, in contrast to A006533 which also counts the n segments of the circumscribed circle delimited by the edges of the regular n-gon. Therefore a(n) = A006533(n) - n. See also A006561 which counts the intersection points, and A350000 which considers iterated "cutting along diagonals". - M. F. Hasler, Dec 13 2021
The Petrie polygon orthographic projection of a regular n-simplex is a regular (n+1)-gon with all diagonals drawn. Hence a(n+1) is the number of regions in the Petrie polygon of a regular n-simplex. - Mohammed Yaseen, Nov 05 2022

References

  • Jean Meeus, Wiskunde Post (Belgium), Vol. 10, 1972, pp. 62-63.
  • C. A. Pickover, The Mathematics of Oz, Problem 58 "The Beauty of Polygon Slicing", Cambridge University Press, 2002.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Cf. A001006, A054726, A006533, A006561, A006600, A007569 (number of vertices), A006522, A135565 (number of line segments).
A062361 gives number of triangles, A331450 and A331451 give distribution of polygons by number of sides.
A333654, A335614, A335646, A337330 give the number of internal n-gon to k-gon contacts for n>=3, k>=n.
A187781 gives number of distinct regions.

Programs

  • Mathematica
    del[m_,n_]:=If[Mod[n,m]==0,1,0]; R[n_]:=If[n<3, 0, (n^4-6n^3+23n^2-42n+24)/24 + del[2,n](-5n^3+42n^2-40n-48)/48 - del[4,n](3n/4) + del[6,n](-53n^2+310n)/12 + del[12,n](49n/2) + del[18,n]*32n + del[24,n]*19n - del[30,n]*36n - del[42,n]*50n - del[60,n]*190n - del[84,n]*78n - del[90,n]*48n - del[120,n]*78n - del[210,n]*48n]; Table[R[n], {n,1,1000}] (* T. D. Noe, Dec 21 2006 *)
  • PARI
    /* Only for odd n > 3, not suitable for other values of n! */ { a(n)=local(nr,x,fn,cn,fn2); nr=0; fn=floor(n/2); cn=ceil(n/2); fn2=(fn-1)^2-1; nr=fn2*n+fn+(n-2)*fn+cn; x=(n-5)/2; if (x>0,nr+=x*(x+1)*(2*x+1)/6*n); nr; } \\ Jon Perry, Jul 08 2003
    
  • PARI
    apply( {A007678(n)=if(n%2, (((n-6)*n+23)*n-42)*n/24+1, ((n^3/2 -17*n^2/4 +22*n -if(n%4, 31, 40) +!(n%6)*(310 -53*n))/12 +!(n%12)*49/2 +!(n%18)*32 +!(n%24)*19 -!(n%30)*36 -!(n%42)*50 -!(n%60)*190 -!(n%84)*78 -!(n%90)*48 -!(n%120)*78 -!(n%210)*48)*n)}, [1..44]) \\ M. F. Hasler, Aug 06 2021
    
  • Python
    def d(n,m): return not n % m
    def A007678(n): return (1176*d(n,12)*n - 3744*d(n,120)*n + 1536*d(n,18)*n - d(n,2)*(5*n**3 - 42*n**2 + 40*n + 48) - 2304*d(n,210)*n + 912*d(n,24)*n - 1728*d(n,30)*n - 36*d(n,4)*n - 2400*d(n,42)*n - 4*d(n,6)*n*(53*n - 310) - 9120*d(n,60)*n - 3744*d(n,84)*n - 2304*d(n,90)*n + 2*n**4 - 12*n**3 + 46*n**2 - 84*n)//48 + 1 # Chai Wah Wu, Mar 08 2021

Formula

For odd n > 3, a(n) = sumstep {i=5, n, 2, (i-2)*floor(n/2)+(i-4)*ceiling(n/2)+1} + x*(x+1)*(2*x+1)/6*n), where x = (n-5)/2. Simplifying the floor/ceiling components gives the PARI code below. - Jon Perry, Jul 08 2003
For odd n, a(n) = (24 - 42*n + 23*n^2 - 6*n^3 + n^4)/24. - Graeme McRae, Dec 24 2004
a(n) = A006533(n) - n. - T. D. Noe, Dec 23 2006
For odd n, binomial transform of [1, 10, 29, 36, 16, 0, 0, 0, ...] = [1, 11, 50, 154, ...]. - Gary W. Adamson, Aug 02 2011
a(n) = A135565(n) - A007569(n) + 1. - Max Alekseyev
See the Mma code in A006533 for the explicit Poonen-Rubenstein formula that holds for all n. - N. J. A. Sloane, Jan 23 2020

Extensions

More terms from Graeme McRae, Dec 26 2004
a(1) = a(2) = 0 prepended by Max Alekseyev, Dec 01 2011

A331450 Irregular triangle read by rows: Take a regular n-sided polygon (n>=3) with all diagonals drawn, as in A007678. Then T(n,k) = number of k-sided polygons in that figure for k = 3, 4, ..., max_k.

Original entry on oeis.org

1, 4, 10, 0, 1, 18, 6, 35, 7, 7, 0, 1, 56, 24, 90, 36, 18, 9, 0, 0, 1, 120, 90, 10, 176, 132, 44, 22, 276, 168, 377, 234, 117, 39, 0, 13, 0, 0, 0, 0, 1, 476, 378, 98, 585, 600, 150, 105, 15, 0, 0, 0, 0, 0, 0, 0, 1, 848, 672, 128, 48, 1054, 901, 357, 136, 17, 34, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1404, 954, 72, 18, 18, 1653, 1444, 646, 190, 57, 38, 2200, 1580, 580, 120, 0, 20, 2268, 2520, 903, 462, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1
Offset: 3

Views

Author

Keywords

Comments

Computed by Scott R. Shannon, Jan 24 2020
See A331451 for a version of this triangle giving the counts for k = 3 through n.
Mitosis of convex polygons, by Scott R. Shannon and N. J. A. Sloane, Dec 13 2021 (Start)
Borrowing a term from biology, we can think of this process as the "mitosis" of a regular polygon. Row 6 of this triangle shows that a regular hexagon "mitoses" into 18 triangles and 4 quadrilaterals, which we denote by 3^18 4^6.
What if we start with a convex but not necessarily regular n-gon? Let M(n) denote the number of different decompositions into cells that can be obtained. For n = 3, 4, and 5 there is only one possibility. For n = 6 there are two possibilities, 3^18 4^6 and 3^19 4^3 5^3. For n = 7 there are at least 11 possibilities. So the sequence M(n) for n >= 3 begins 1, 1, 1, 2, >=11, ...
The links below give further information. See also A350000. (End)

Examples

			A hexagon with all diagonals drawn contains 18 triangles and 6 quadrilaterals, so row 6 is [18, 6].
Triangle begins:
  1,
  4,
  10, 0, 1,
  18, 6,
  35, 7, 7, 0, 1,
  56, 24,
  90, 36, 18, 9, 0, 0, 1,
  120, 90, 10,
  176, 132, 44, 22, 0, 0, 0, 0, 1
  276, 168,
  377, 234, 117, 39, 0, 13, 0, 0, 0, 0, 1,
  476, 378, 98,
  585, 600, 150, 105, 15, 0, 0, 0, 0, 0, 0, 0, 1,
  848, 672, 128, 48,
  1054, 901, 357, 136, 17, 34, 0, 0, 0, 0, 0, 0, 0, 0, 1,
  1404, 954, 72, 18, 18,
  1653, 1444, 646, 190, 57, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1
  2200, 1580, 580, 120, 0, 20,
  2268, 2520, 903, 462, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1,
  2992, 2860, 814, 66, 44, 44,
  3749, 2990, 1564, 644, 115, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1,
  ...
The row sums are A007678, the first column is A062361.
		

Crossrefs

Extensions

Added "regular" to definition. - N. J. A. Sloane, Mar 06 2021

A342222 a(n) is the smallest m such that a regular m-gon with all diagonals drawn contains a cell with n sides, or a(n) = -1 if no such m exists.

Original entry on oeis.org

3, 6, 5, 9, 7, 13, 9, 29, 11, 40, 13, 43, 15, 212, 17, 231, 19
Offset: 3

Views

Author

Keywords

Comments

Theorem: If n is odd then a(n) = n.
Proof. (i) If n is odd then the central cell in a regular n-gon with all diagonals drawn is a smaller regular n-gon. So if n is odd, then a(n) <= n.
(ii) Suppose a convex m-gon, not necessarily regular, with all diagonals drawn has a cell with e edges. Each edge when extended meets two vertices, so at most 2e vertices are involved in defining the boundary of that cell.
On the other hand no vertex can define more than two edges of the cell, so 2e <= 2m, so e <= m. So to get an n-sided cell, we need at least n vertices. So a(n) >= n. QED.
If a(20) > 0 it is greater than 765 - Scott R. Shannon, Nov 30 2021

Examples

			Examining the images in A007678, for example Michael Rubinstein's illustration, or the images shown here, we see that the first occurrence of a five-sided cell is for m = 5, so a(5) = 5. The first time we see a four-sided cell is for m = 6, so a(4) = 6.
		

Crossrefs

See also A341729 and A341730 for the maximum number of sides in any cell.

Extensions

a(16)-a(19) added by Scott R. Shannon, Mar 14 2021

A359009 Irregular table read by rows: T(n,k) is the number of k-gons formed, k>=2, when every pair of n points, placed at the vertices of a regular n-gon, are connected by a circle and where the points lie at the ends of the circle's diameter.

Original entry on oeis.org

1, 0, 7, 8, 4, 0, 40, 20, 6, 6, 72, 6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 133, 98, 42, 7, 1, 16, 184, 56, 0, 8, 0, 342, 306, 99, 54, 0, 0, 1, 10, 510, 220, 60, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 693, 858, 231, 88, 11, 11, 0, 0, 1, 24, 924, 612, 120, 60, 0, 1469, 1560, 455, 299, 13, 0, 0, 13, 0, 0, 1
Offset: 2

Views

Author

Scott R. Shannon, Dec 12 2022

Keywords

Comments

Conjectures: for odd values of n all vertices are simple, other than those defining the diameters of the circles. For n > 2 and (n-2) mod 4 = 0, T(n,2) = n. For n mod 4 = 0, T(n,2) = k*n, k>=2. For odd n, T(n,2) = 0.
See A358782 for more images of the k-gons.
The author thanks Zach Shannon some of whose code was used in the generation of this sequence.

Examples

			The table begins:
1;
0, 7;
8, 4;
0, 40, 20, 6;
6, 72, 6, 0, 0, 0, 0, 0, 0, 0, 1;
0, 133, 98, 42, 7, 1;
16, 184, 56, 0, 8;
0, 342, 306, 99, 54, 0, 0, 1;
10, 510, 220, 60, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1;
0, 693, 858, 231, 88, 11, 11, 0, 0, 1;
24, 924, 612, 120, 60;
0, 1469, 1560, 455, 299, 13, 0, 0, 13, 0, 0, 1;
14, 1806, 1428, 350, 98, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \\
                0, 0, 0, 1;
0, 2550, 2910, 870, 405, 75, 60, 0, 0, 0, 0, 0, 0, 1;
32, 3280, 2000, 768, 352, 0, 16;
0, 4301, 4862, 1734, 680, 102, 34, 0, 17, 0, 17, 0, 0, 0, 0, 1;
18, 4878, 4482, 1332, 324, 54, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \\
                0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1;
0, 6517, 7847, 2565, 1045, 190, 133, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1;
80, 7340, 7040, 1920, 700, 0, 80;
0, 9723, 11487, 4515, 1491, 210, 168, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1;
.
.
		

Crossrefs

Cf. A358782 (regions), A358746 (vertices), A358783 (edges), A331451, A344938.

Formula

Sum of row n = A358782(n).

A331911 Triangle read by rows: Take an equilateral triangle with all diagonals drawn, as in A092867. Then T(n,k) = number of k-sided polygons in that figure for k = 3, 4, ..., n+2 and where n is the number of equal parts each side is divided into.

Original entry on oeis.org

1, 12, 0, 48, 24, 3, 162, 90, 0, 0, 378, 306, 15, 16, 0, 774, 696, 84, 18, 0, 0, 1470, 1383, 219, 37, 0, 0, 0, 2604, 2382, 600, 78, 6, 6, 0, 0, 4224, 4089, 771, 177, 24, 6, 0, 0, 0, 6624, 6186, 1470, 234, 42, 0, 0, 0, 0, 0, 9738, 9486, 2307, 498, 48, 0, 0, 3, 0, 1, 0, 14010, 13548, 3984, 816, 144, 0, 0, 0, 0, 0, 0, 0
Offset: 1

Views

Author

Keywords

Examples

			An equilateral triangle with no other point along its edges, n = 1, contains 1 triangle so the first row is [1]. An equilateral triangle with 1 point dividing its edges, n = 2, contains 12 triangles and no other n-gons, so the second row is [12,0]. An equilateral triangle with 2 points dividing its edges, n = 3, contains 48 triangles, 24 quadrilaterals and 3 pentagons, so the third row is [48,24,3].
Triangle begins:
1
12,0
48,24,3
162,90,0,0
378,306,15,16,0
774,696,84,18,0,0
1470,1383,219,37,0,0,0
2604,2382,600,78,6,6,0,0
4224,4089,771,177,24,6,0,0,0
6624,6186,1470,234,42,0,0,0,0,0
9738,9486,2307,498,48,0,0,3,0,1,0
14010,13548,3984,816,144,0,0,0,0,0,0,0
19248,19224,5007,1102,156,18,0,0,0,0,0,0,0
26208,26142,8634,1668,192,24,0,0,0,0,0,0,0,0
The row sums are A092867.
		

Crossrefs

A341729 Maximum number of sides in any cell in a regular n-gon with all diagonals drawn (cf. A007678).

Original entry on oeis.org

3, 3, 5, 4, 7, 4, 9, 5, 11, 4, 13, 5, 15, 6, 17, 7, 19, 8, 21, 8, 23, 6, 25, 8, 27, 8, 29, 6, 31, 7, 33, 8, 35, 8, 37, 8, 39, 12, 41, 8, 43, 10, 45, 8, 47, 10, 49, 10, 51, 8, 53, 10, 55, 10, 57, 10, 59, 9, 61, 10, 63, 10, 65, 9, 67, 10, 69, 10, 71, 10, 73, 10, 75, 12, 77, 10, 79, 10
Offset: 3

Views

Author

Keywords

Comments

For a(2*n) see A341730.
Theorem: a(2*n+1) = 2*n+1. For the proof see A342222.
It would be nice to have a bigger b-file.

Crossrefs

Extensions

a(141) and beyond from Scott R. Shannon, Nov 30 2021

A333654 Irregular table read by rows: row n gives the number of 3-gon to k-gon contacts, with k>=3, for a regular n-gon with all diagonals drawn.

Original entry on oeis.org

0, 4, 10, 0, 5, 18, 12, 28, 14, 21, 0, 7, 56, 48, 54, 54, 54, 36, 0, 0, 9, 180, 160, 30, 88, 154, 88, 88, 0, 0, 0, 0, 11, 240, 336, 130, 260, 299, 182, 0, 104, 0, 0, 0, 0, 13, 266, 616, 266, 180, 600, 375, 300, 90, 0, 0, 0, 0, 0, 0, 0, 15, 448, 1056, 320, 256
Offset: 3

Views

Author

Scott R. Shannon, Aug 23 2020

Keywords

Comments

See A335614 for the number of 4-gon to k-gon contacts, with k>=4.
See A335646 for the number of 5-gon to k-gon contacts, with k>=5.
See A337330 for the number of 6-gon to k-gon contacts, with k>=6.
See A007678 for the number of regions and images of other n-gons.

Examples

			The table begins:
.
0;
4;
10,0,5;
18,12;
28,14,21,0,7;
56,48;
54,54,54,36,0,0,9;
180,160,30;
88,154,88,88,0,0,0,0,11;
240,336;
130,260,299,182,0,104,0,0,0,0,13;
266,616,266;
180,600,375,300,90,0,0,0,0,0,0,0,15;
448,1056,320,256;
238,816,935,578,85,238,0,0,0,0,0,0,0,0,17;
900,1836,324,108,126;
304,1520,1463,798,304,228,0,0,0,0,0,0,0,0,0,0,19;
1000,2120,1740,560,0,160;
378,2352,2016,1554,84,0,0,0,0,0,0,0,0,0,0,0,0,0,21;
1056,3828,2310,308,176,220;
460,2852,4117,2530,644,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23;
2352,5856,2376,288;
550,4550,4800,3350,900,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25;
1950,6708,5772,1612,650,208;
648,6372,6399,4968,432,810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27;
2380,10024,5712,3584,616,224;
754,8642,8497,6148,783,928,0,870,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29;
6330,14640,5340,2340;
868,11532,11191,7378,806,1302,0,496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31;
3712,16384,12000,6016,1248;
990,14454,14619,12540,2079,1782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33;
		

Crossrefs

Cf. A335614 (4-gon contacts), A335646 (5-gon contacts), A337330 (6-gon contacts), A007678, A135565, A007569, A062361, A331450, A331451.

Formula

For odd n, with n > 3, row(n,n) = n as the n-gon contains a smaller n-gon at its center surrounded by 3-gons.

A335614 Irregular table read by rows: row n gives the number of 4-gon to k-gon contacts, with k>=4, for a regular n-gon with all diagonals drawn.

Original entry on oeis.org

0, 0, 0, 6, 0, 5, 24, 18, 36, 18, 90, 20, 110, 110, 44, 168, 208, 208, 52, 378, 140, 570, 330, 330, 640, 320, 32, 918, 646, 238, 34, 34, 990, 1254, 1330, 304, 38, 76, 1540, 1040, 80, 2478, 1722, 1008, 42, 2948, 1408, 44, 132, 132, 2852, 2254, 1012, 92, 46, 3624, 1536, 144
Offset: 3

Views

Author

Scott R. Shannon, Aug 23 2020

Keywords

Comments

See A333654 for the number of 3-gon to k-gon contacts, with k>=3.
See A335646 for the number of 5-gon to k-gon contacts, with k>=5.
See A337330 for the number of 6-gon to k-gon contacts, with k>=6.
See A007678 for the number of regions and images of other n-gons.

Examples

			The table begins:
.
0;
0;
0;
6;
0,5;
24;
18,36,18;
90,20;
110,110,44;
168;
208,208,52;
378,140;
570,330,330;
640,320,32;
918,646,238,34,34;
990;
1254,1330,304,38,76;
1540,1040,80;
2478,1722,1008,42;
2948,1408,44,132,132;
2852,2254,1012,92,46;
3624,1536,144;
4650,3600,1450,150,150;
4784,3380,572,52;
6696,4968,2160,54,54;
7280,3752,2072,168;
8990,7308,3016,0,232,0,0,58;
7770,1200,300;
13020,9920,3472,186,434,0,124;
12160,8576,2048,256;
14784,11418,5742,792,330;
		

Crossrefs

Cf. A333654 (3-gon contacts), A335646 (5-gon contacts), , A337330 (6-gon contacts), A007678, A135565, A007569, A062361, A331450, A331451.

A335646 Irregular table read by rows: row n gives the number of 5-gon to k-gon contacts, with k>=5, for a regular n-gon with all diagonals drawn.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 39, 42, 15, 0, 15, 0, 102, 18, 190, 38, 19, 20, 80, 273, 210, 21, 154, 44, 529, 322, 69, 144, 750, 350, 598, 156, 26, 1215, 432, 81, 560, 56, 928, 406, 29, 0, 0, 0, 29, 300, 60, 2139, 248, 93, 1568, 704, 64, 1782, 792, 132
Offset: 3

Views

Author

Scott R. Shannon, Aug 23 2020

Keywords

Comments

See A333654 for the number of 3-gon to k-gon contacts, with k>=3.
See A335614 for the number of 4-gon to k-gon contacts, with k>=4.
See A337330 for the number of 6-gon to k-gon contacts, with k>=6.
See A007678 for the number of regions and images of other n-gons.

Examples

			The table begins:
.
0;
0;
0;
0;
0;
0;
0;
0;
11;
0;
39;
42;
15,0,15;
0;
102;
18;
190,38,19;
20,80;
273,210,21;
154,44;
529,322,69;
144;
750,350;
598,156,26;
1215,432,81;
560,56;
928,406,29,0,0,0,29;
300,60;
2139,248,93;
1568,704,64;
1782,792,132;
		

Crossrefs

Cf. A333654 (3-gon contacts), A335614 (4-gon contacts), A337330 (6-gon contacts), A007678, A135565, A007569, A062361, A331450, A331451.

A337330 Irregular table read by rows: row n gives the number of 6-gon to k-gon contacts, with k>=6, for a regular n-gon with all diagonals drawn, with n>=25.

Original entry on oeis.org

50, 0, 108, 0, 0, 0, 124, 32, 66, 136, 70, 144, 148, 76, 390, 120, 328, 82, 42, 86, 86, 0, 540, 92, 92, 188, 94, 94, 0, 196, 98, 750, 100, 816, 416, 104, 1272, 432, 220, 110, 728, 570, 570, 406, 348, 116, 1062, 354, 300, 854, 366, 122, 1488, 124, 1512, 252, 126, 576, 2080, 130, 260, 2112
Offset: 25

Views

Author

Scott R. Shannon, Aug 23 2020

Keywords

Comments

For n=3 to n=24 there are no n-gons that have 6-gon to k-gon contacts, where k>=6, so the table starts at n=25.
See A333654 for the number of 3-gon to k-gon contacts, with k>=3.
See A335614 for the number of 4-gon to k-gon contacts, with k>=4.
See A335646 for the number of 5-gon to k-gon contacts, with k>=5.
See A007678 for the number of regions and images of other n-gons.

Examples

			The table begins:
.
50;
0;
108;
0;
0;
0;
124;
32;
66;
136;
70;
144;
148;
76;
390;
120;
328, 82;
42;
		

Crossrefs

Cf. A333654 (3-gon contacts), A335614 (4-gon contacts), A335646 (5-gon contacts), A007678, A135565, A007569, A062361, A331450, A331451.

Extensions

a(34) and beyond from Scott R. Shannon, Jan 11 2021
Showing 1-10 of 18 results. Next