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.

A160338 Height (maximum absolute value of coefficients) of the n-th cyclotomic polynomial.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2
Offset: 1

Views

Author

Max Alekseyev, May 13 2009

Keywords

Comments

Different from A137979: first time these sequence disagree is at n=14235 with a(14235)=2 and A137979(14235)=3.

Examples

			a(4) = 1 because the 4th cyclotomic polynomial x^2 + 1 has height 1.
		

Crossrefs

Cf. A160339 (records), A160340 (indices of records), A160341.

Programs

  • Mathematica
    Table[Max@Abs@CoefficientList[Cyclotomic[n,x],x],{n,1,105}] (* from Jean-François Alcover, Apr 02 2011 *)
  • PARI
    a(n) = vecmax(abs(Vec(polcyclo(n))))