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.

A225586 Floor((5^n-1)/n).

Original entry on oeis.org

4, 12, 41, 156, 624, 2604, 11160, 48828, 217013, 976562, 4438920, 20345052, 93900240, 435965401, 2034505208, 9536743164, 44878791360, 211927625868, 1003867701480, 4768371582031, 22706531343005, 108372081409801, 518301258916440, 2483526865641276
Offset: 1

Views

Author

Vincenzo Librandi, May 30 2013

Keywords

Crossrefs

Programs

  • Magma
    [Floor((5^n-1)/n): n in [1..30]];
  • Mathematica
    Table[Floor[(5^n - 1) / n], {n, 30}] (* or *) Table[Quotient[5^n - 1, n], {n, 30}]