OFFSET
1,1
COMMENTS
Gallot and Moree say that a cyclotomic polynomial is coefficient convex if the union of the coefficients is a range of consecutive integers. They prove that if n is ternary (the product of three distinct odd primes), then Phi(n,x) is coefficient convex. All numbers in this sequence have more than three odd prime factors.
LINKS
T. D. Noe, Table of n, a(n) for n = 1..1000
Yves Gallot and Pieter Moree, Neighboring ternary cyclotomic coefficients differ by at most one, arXiv:0810.5496 [math.NT], 2008.
MATHEMATICA
nn = Select[Range[1155, 59999, 2], SquareFreeQ[#] && PrimeNu[#] > 3&];
Reap[For[k = 1, k <= Length[nn], k++, n = nn[[k]]; If[{1} != (CoefficientList[Cyclotomic[n, x], x] // Union // Differences // Union), Print[n]; Sow[n]]]][[2, 1]] (* Jean-François Alcover, Nov 11 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
T. D. Noe, Nov 03 2008
EXTENSIONS
Definition corrected by T. D. Noe, Nov 16 2008
STATUS
approved