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.

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.

Original entry on oeis.org

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

Views

Author

Paolo Xausa, May 19 2023

Keywords

Crossrefs

Column k = 6 of A363174.

Programs

  • 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]

Formula

a(n) = binomial(n,6) = A000579(n) if n is odd, A000579(n) - A260417(n/2) if n is even.