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.

A024091 a(n) = 8^n - n^3.

Original entry on oeis.org

1, 7, 56, 485, 4032, 32643, 261928, 2096809, 16776704, 134216999, 1073740824, 8589933261, 68719475008, 549755811691, 4398046508360, 35184372085457, 281474976706560, 2251799813680335, 18014398509476152
Offset: 0

Views

Author

Keywords

Programs

  • Magma
    [8^n-n^3: n in [0..20]]; // Vincenzo Librandi, Jul 05 2011
  • Mathematica
    Table[8^n-n^3,{n,0,20}] (* or *) LinearRecurrence[{12,-38,52,-33,8},{1,7,56,485,4032},20] (* Harvey P. Dale, Aug 22 2012 *)

Formula

a(n) = 12*a(n-1) - 38*a(n-2) + 52*a(n-3) - 33*a(n-4) + 8*a(n-5); a(0)=1, a(1)=7, a(2)=56, a(3)=485, a(4)=4032. - Harvey P. Dale, Aug 22 2012