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.

A060892 a(n) = n^8 - n^6 + n^4 - n^2 + 1.

Original entry on oeis.org

1, 1, 205, 5905, 61681, 375601, 1634221, 5649505, 16519105, 42521761, 99009901, 212601841, 427016305, 810932305, 1468297741, 2551550401, 4278255361, 6951703105, 10986053005, 16936647121, 25536159601, 37737287281, 54762727405, 78163228705, 109884542401
Offset: 0

Views

Author

N. J. A. Sloane, May 05 2001

Keywords

Comments

a(n) = Phi_20(n) where Phi_k(x) is the k-th cyclotomic polynomial.

Programs

  • Maple
    A060892 := proc(n)
            numtheory[cyclotomic](20,n) ;
    end proc:
    seq(A060892(n),n=0..20) ; # R. J. Mathar, Feb 11 2014
  • Mathematica
    Cyclotomic[20, Range[0, 30]] (* Paolo Xausa, Feb 26 2024 *)
  • PARI
    a(n) = n^8 - n^6 + n^4 - n^2 + 1; \\ Harry J. Smith, Jul 14 2009

Formula

G.f.: (1-8*x+232*x^2+4012*x^3+15958*x^4+15832*x^5+4096*x^6+196*x^7+x^8)/ (1-x)^9. [Colin Barker, Apr 22 2012]