OFFSET
1,2
LINKS
T. D. Noe, Rows n=1..100 of triangle, flattened
T. M. Apostol, Resultants of cyclotomic polynomials, Proc. Amer. Math. Soc. 24 (1970), 457-462.
Eric Weisstein's World of Mathematics, Cyclotomic Polynomial.
EXAMPLE
Triangle begins:
0;
2, 0;
3, 1, 0;
2, 2, 1, 0;
5, 1, 1, 1, 0;
1, 3, 4, 1, 1, 0;
7, 1, 1, 1, 1, 1, 0;
2, 2, 1, 4, 1, 1, 1, 0;
...
MATHEMATICA
Flatten[Table[Resultant[Cyclotomic[n, x], Cyclotomic[k, x], x], {k, 20}, {n, k}]]
PROG
(PARI) T(n, k) = polresultant(polcyclo(k), polcyclo(n));
row(n) = vector(n, k, T(n, k)); \\ Michel Marcus, Aug 18 2021
CROSSREFS
KEYWORD
AUTHOR
STATUS
approved