login
A070518
Value of n-th cyclotomic polynomial at n.
13
0, 3, 13, 17, 781, 31, 137257, 4097, 532171, 9091, 28531167061, 20593, 25239592216021, 7027567, 2392743361, 4294967297, 51702516367896047761, 34006393, 109912203092239643840221, 25536159601, 7006306553612521, 25405143539623, 949112181811268728834319677753
OFFSET
1,2
LINKS
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
Cf. A070519 (indices of prime terms), A088790 (prime indices of prime terms).
Sequence in context: A006486 A368709 A273946 * A263182 A045525 A030774
KEYWORD
nonn
AUTHOR
Labos Elemer, May 02 2002
STATUS
approved