login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A363173
Number of triangles inside a regular n-gon formed by intersecting line segments, considering all configurations of 3 line segments from 6 distinct vertices.
2
0, 0, 0, 0, 7, 16, 84, 180, 462, 796, 1716, 2856, 5005, 7744, 12376, 17508, 27132, 38160, 54264, 73788, 100947, 132216, 177100, 228748, 296010, 374808, 475020, 584140, 736281, 903168, 1107568, 1341232, 1623160, 1939308, 2324784, 2755380, 3262623, 3832080, 4496388
OFFSET
3,5
LINKS
Bjorn Poonen and Michael Rubinstein, The number of intersection points made by the diagonals of a regular polygon, arXiv:math/9508209 [math.MG], 1995-2006.
Steven E. Sommars and Tim Sommars, The Number of Triangles Formed by Intersecting Diagonals of a Regular Polygon, Journal of Integer Sequences, Vol. 1 (1998), Article 98.1.5.
Paolo Xausa, Illustration of a(9).
FORMULA
a(n) = binomial(n,6) = A000579(n) if n is odd, A000579(n) - A260417(n/2) if n is even.
MATHEMATICA
A363173list[nmax_]:=Module[{d}, d[m_, n_]:=Boole[Divisible[n, m]]; Table[Binomial[n, 6]-If[EvenQ[n], ((1/8n^2-9/8n+7/4)d[2, n]+3/4d[4, n]+(6n-106/3)d[6, n]-33d[12, n]-36d[18, n]-24d[24, n]+96d[30, n]+72d[42, n]+264d[60, n]+96d[84, n]+48d[90, n]+96d[120, n]+48d[210, n])n, 0], {n, 3, nmax}]]; A363173list[50]
CROSSREFS
Column k = 6 of A363174.
Sequence in context: A215180 A309476 A192376 * A214904 A029498 A351531
KEYWORD
nonn
AUTHOR
Paolo Xausa, May 19 2023
STATUS
approved