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.

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

Original entry on oeis.org

1, 4, 26, 222, 2451, 33288, 538084, 10101010, 216145205, 5195862732, 138679078110, 4070332170534, 130325562613351, 4521260802379792, 168962471790509960, 6767528048726614650, 289242639716420115369
Offset: 0

Views

Author

Paul Barry, Nov 12 2003

Keywords

Crossrefs

Programs

  • Magma
    [Floor((n+3)^(n+2)/((n+3)^2-1)): n in [0..25]]; // G. C. Greubel, Oct 11 2017
  • Mathematica
    Table[Floor[(n + 3)^(n + 2)/((n + 3)^2 - 1)], {n, 0, 50}] (* G. C. Greubel, Oct 11 2017 *)
  • PARI
    for(n=0, 25, print1(floor((n+3)^(n+2)/((n+3)^2-1)), ", ")) \\ G. C. Greubel, Oct 11 2017