OFFSET
1,5
COMMENTS
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 f(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 higher limit g(n) is the greatest root of another group of polynomials defined by coefficients in the triangle A199220.
FORMULA
The triangle of coefficients can be generated by expanding the equation (Sum_{k=1..n} 1/(1+(k-1)d)) - 2/(1+(n-1)d) = 0 into a polynomial of degree n-1 in d.
EXAMPLE
Triangle starts:
-1;
0, 1;
1, 4, 2;
2, 12, 18, 6;
3, 28, 83, 88, 24;
4, 55, 270, 575, 500, 120;
MATHEMATICA
Flatten[Table[(n+1-k)Abs[StirlingS1[n, n+1-k]]-2Abs[StirlingS1[n-1, n-k]], {n, 1, 20}, {k, 1, n}]]
PROG
(PARI) T(n, k) = (n+1-k)*abs(stirling(n, n+1-k, 1)) - 2*abs(stirling(n-1, n-k, 1));
tabl(nn) = for (n=1, nn, for (k=1, n, print1(T(n, k), ", ")); print); \\ Michel Marcus, Sep 30 2018
CROSSREFS
KEYWORD
sign,tabl
AUTHOR
Frank M Jackson, Nov 04 2011
STATUS
approved