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.
%I A199220 #21 Sep 30 2018 07:08:28 %S A199220 -1,0,-1,1,0,-2,2,6,0,-6,3,20,35,0,-24,4,45,170,225,0,-120,5,84,525, %T A199220 1470,1624,0,-720,6,140,1288,5880,13538,13132,0,-5040,7,216,2730, %U A199220 18144,67347,134568,118124,0,-40320,8,315,5220,47250,253092,807975,1447360,1172700,0,-362880,9,440,9240,108900,788865,3608220,10250790,16819000,12753576,0,-3628800 %N A199220 Triangle read by rows: T(n,k) = (n-1-k)*abs(s(n,n+1-k)), where s(n,k) are the signed Stirling numbers of the first kind and 1 <= k <= n. %C A199220 Use the T(n,k) as coefficients to generate a polynomial of degree n-1 in d as Sum_{k=1..n} T(n,k)d^(k-1) and let g(n) be the greatest root of this polynomial. Then a polygon of n sides that form a harmonic progression in the ratio 1 : 1/(1+d) : 1/(1+2d) : ... : 1/(1+(n-1)d) can only exist if the common difference d of the denominators is limited to the range f(n) < d < g(n). The lower limit f(n) is the greatest root of another group of polynomials defined by coefficients in the triangle A199221. %F A199220 The triangle of coefficients can be generated by expanding the equation (Sum_{k=1..n} 1/(1+(k-1)*d)) - 2 = 0 into a polynomial of degree n-1 in d. %e A199220 Triangle starts: %e A199220 -1; %e A199220 0, -1; %e A199220 1, 0, -2; %e A199220 2, 6, 0, -6; %e A199220 3, 20, 35, 0, -24; %e A199220 4, 45, 170, 225, 0, -120; %t A199220 Flatten[Table[(n-1-k)Abs[StirlingS1[n,n+1-k]],{n,1,20},{k,1,n}]] %o A199220 (PARI) T(n,k) = (n-1-k)*abs(stirling(n,n+1-k,1)); \\ _Michel Marcus_, Sep 30 2018 %Y A199220 Cf. A094638, A192918, A199221. %K A199220 sign,tabl %O A199220 1,6 %A A199220 _Frank M Jackson_, Nov 04 2011