A020501 Cyclotomic polynomials at x=-2.
-2, -3, -1, 3, 5, 11, 7, 43, 17, 57, 31, 683, 13, 2731, 127, 331, 257, 43691, 73, 174763, 205, 5419, 2047, 2796203, 241, 1016801, 8191, 261633, 3277, 178956971, 151, 715827883, 65537, 1397419, 131071, 24214051
Offset: 0
Keywords
Links
- T. D. Noe, Table of n, a(n) for n = 0..1000
- D. M. Bloom, On the Coefficients of the Cyclotomic Polynomials, Amer.Math.Monthly 75, 372-377, 1968.
- Index entries for cyclotomic polynomials, values at X
Programs
-
Maple
with(numtheory,cyclotomic); f := n->subs(x=-2,cyclotomic(n,x)); seq(f(i),i=0..64);
-
Mathematica
Join[{-2}, Cyclotomic[Range[50], -2]] (* Paolo Xausa, Feb 26 2024 *)
-
PARI
a(n) = if (n, polcyclo(n, -2), -2); \\ Michel Marcus, Mar 05 2016
Comments