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.

A060891 a(n) = n^6 - n^3 + 1.

Original entry on oeis.org

1, 1, 57, 703, 4033, 15501, 46441, 117307, 261633, 530713, 999001, 1770231, 2984257, 4824613, 7526793, 11387251, 16773121, 24132657, 34006393, 47039023, 63992001, 85756861, 113369257, 148023723, 191089153, 244125001, 308898201, 387400807, 481868353, 594798933, 728973001
Offset: 0

Views

Author

N. J. A. Sloane, May 05 2001

Keywords

Comments

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

Programs

  • Maple
    with (combinat):seq(fibonacci(3,n^3)-n^3, n=0..30); # Zerinvary Lajos, May 25 2008
    # Alternative
    A060891 := proc(n)
            numtheory[cyclotomic](18,n) ;
    end proc:
    seq(A060891(n),n=0..20) ; # R. J. Mathar, Feb 11 2014
  • Mathematica
    Array[#^6 - #^3 + 1 &, 51, 0] (* or *)
    Cyclotomic[18, Range[0, 50]] (* Paolo Xausa, Feb 26 2024 *)
  • PARI
    a(n) = { n^6 - n^3 + 1 } \\ Harry J. Smith, Jul 14 2009
    
  • PARI
    a(n) = polcyclo(18, n); \\ Michel Marcus, Dec 16 2017

Formula

G.f.: (1-6*x+71*x^2+290*x^3+309*x^4+52*x^5+3*x^6)/(1-x)^7. - Colin Barker, Apr 22 2012