OFFSET
1,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..250
Eric Weisstein's World of Mathematics, Cyclotomic Polynomial
EXAMPLE
n=10: 10th cyclotomic polynomial is 1-x+x^2-x^3+x^4; at x=10 it gives a(10)=9091.
MAPLE
a:= n-> numtheory[cyclotomic](n$2):
seq(a(n), n=1..25); # Alois P. Heinz, Jul 05 2024
MATHEMATICA
Table[Cyclotomic[w, w], {w, 1, 35}]
PROG
(PARI) a(n) = polcyclo(n, n) \\ Michel Marcus, Apr 02 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, May 02 2002
STATUS
approved