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.

A197708 a(n) = floor((n + 1/n)^7).

Original entry on oeis.org

128, 610, 4572, 25045, 102807, 339119, 948645, 2337564, 5211939, 10721353, 20642867, 37610342, 65394162, 109236388, 176246402, 275862066, 420381442, 625570111, 911349137, 1302568701, 1829872465, 2530657691, 3450136161, 4642500937, 6172204001, 8115349815
Offset: 1

Views

Author

Vincenzo Librandi, Oct 18 2011

Keywords

Crossrefs

Programs

  • Magma
    [Floor((n+1/n)^7): n in [1..40]];
    
  • Mathematica
    Table[Floor[(n + 1/n)^7], {n, 40}] (* T. D. Noe, Dec 27 2011 *)
  • PARI
    a(n)=floor((n+1/n)^7) \\ Charles R Greathouse IV, Dec 27 2011

Formula

For n > 35, a(n) = n^7 + 7*n^5 + 21*n^3 + 35*n. - Charles R Greathouse IV, Dec 27 2011
a(n) = 8*a(n-1) - 28*a(n-2) + 56*a(n-3) - 70*a(n-4) + 56*a(n-5) - 28*a(n-6) + 8*a(n-7) - a(n-8). - Wesley Ivan Hurt, Apr 17 2023