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.

A032777 Floor( n(n+1)(n+2)...(n+7) / (n+(n+1)+(n+2)+...+(n+7)) ).

Original entry on oeis.org

0, 1120, 8247, 34892, 110880, 293505, 682787, 1441440, 2820208, 5189184, 9075733, 15209677, 24576340, 38478109, 58605120, 87115718, 126727310, 180818236, 253541302, 349949600, 476135234, 639381600, 848329835
Offset: 0

Views

Author

Patrick De Geest, May 15 1998

Keywords

Crossrefs

Programs

  • Mathematica
    With[{c=n+Range[0,7]},Table[Floor[Times@@c/Total[c]],{n,0,30}]] (* Harvey P. Dale, Sep 24 2021 *)