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.

A024093 a(n) = 8^n - n^5.

Original entry on oeis.org

1, 7, 32, 269, 3072, 29643, 254368, 2080345, 16744448, 134158679, 1073641824, 8589773541, 68719227904, 549755442595, 4398045973280, 35184371329457, 281474975662080, 2251799812265391, 18014398507592416, 144115188073379773, 1152921504603646976
Offset: 0

Views

Author

Keywords

Programs

  • Magma
    [8^n-n^5: n in [0..20]]; // Vincenzo Librandi, Jul 05 2011
  • Mathematica
    CoefficientList[Series[(-9*x^6 - 201*x^5 - 517*x^4 - 122*x^3 + 3*x^2 + 7*x - 1)/((x - 1)^6*(8*x - 1)), {x, 0, 20}], x] (* Wesley Ivan Hurt, Nov 12 2022 *)

Formula

From Chai Wah Wu, Jul 10 2016: (Start)
a(n) = 14*a(n-1) - 63*a(n-2) + 140*a(n-3) - 175*a(n-4) + 126*a(n-5) - 49*a(n-6) + 8*a(n-7) for n > 6.
G.f.: (-9*x^6 - 201*x^5 - 517*x^4 - 122*x^3 + 3*x^2 + 7*x - 1)/((x - 1)^6*(8*x - 1)). (End)