OFFSET
1,1
COMMENTS
a(n) = 1 if n is a prime.
The sum of the coefficients in the n-th cyclotomic polynomial is given by A020500.
The first occurrence of 4 in this sequence is a(105).
LINKS
T. D. Noe, Table of n, a(n) for n = 1..10000
EXAMPLE
a(12)=3 because the distinct coefficients of the 12th cyclotomic polynomial, x^4-x^2+1, are 0, 1 and -1.
MATHEMATICA
Table[Length[Union[CoefficientList[Cyclotomic[n, x], x]]], {n, 100}] (* T. D. Noe, Dec 09 2013 *)
PROG
(PARI) a(n) = #vecsort(Vec(polcyclo(n)), , 8)
CROSSREFS
KEYWORD
nonn
AUTHOR
Colin Barker, Oct 30 2013
STATUS
approved