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.

A089815 a(n) = floor((n+2)^(n+2)/((n+2)^2-1)).

Original entry on oeis.org

1, 3, 17, 130, 1333, 17157, 266305, 4842756, 101010101, 2377597255, 62350352785, 1802828015430, 56984650387477, 1954883439200265, 72340172838076673, 2872362020438669320, 121815504877079063701, 5495610154611982192011, 262801002506265664160401
Offset: 0

Views

Author

Paul Barry, Nov 12 2003

Keywords

Crossrefs

Programs

  • Magma
    [Floor((n+2)^(n+2)/((n+2)^2-1)): n in [0..50]]; // G. C. Greubel, Oct 10 2017
  • Maple
    A089815:=n->floor((n+2)^(n+2)/((n+2)^2-1)): seq(A089815(n), n=0..30); # Wesley Ivan Hurt, Apr 11 2017
  • Mathematica
    Table[Floor[(n + 2)^(n + 2)/((n + 2)^2 - 1)], {n, 0, 50}] (* G. C. Greubel, Oct 10 2017 *)
  • PARI
    for(n=0,50, print1(floor((n+2)^(n+2)/((n+2)^2-1)), ", ")) \\ G. C. Greubel, Oct 10 2017