cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A086780 Number of negative terms in n-th cyclotomic polynomial.

Original entry on oeis.org

1, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 3, 3, 0, 0, 1, 0, 2, 4, 5, 0, 1, 0, 6, 0, 3, 0, 3, 0, 0, 7, 8, 8, 1, 0, 9, 8, 2, 0, 4, 0, 5, 3, 11, 0, 1, 0, 2, 11, 6, 0, 1, 8, 3, 12, 14, 0, 3, 0, 15, 4, 0, 15, 7, 0, 8, 15, 8, 0, 1, 0, 18, 3, 9, 15, 8, 0, 2, 0, 20, 0, 4, 20, 21, 19, 5, 0, 3, 11, 11, 20, 23, 15, 1
Offset: 1

Views

Author

Yuval Dekel (dekelyuval(AT)hotmail.com), Aug 03 2003

Keywords

References

Crossrefs

Cf. A051664 (number of nonzero terms in n-th cyclotomic polynomial).

Programs

  • Mathematica
    Table[Count[CoefficientList[Cyclotomic[n, x], x], _?(#<0&)], {n, 0, 100}]
  • PARI
    a(n) = #select(x->(x<0), Vec(polcyclo(n))); \\ Michel Marcus, Apr 18 2018

Formula

a(n) = 0 iff n is a prime power. - T. D. Noe, Aug 08 2003
a(n) = (A051664(n)-1)/2 if n is not a prime power and has at most two distinct odd prime divisors. So 105 is the smallest n>1 where neither formula applies. - Aaron Meyerowitz, Apr 18 2018

Extensions

More terms from T. D. Noe, Aug 08 2003