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.

A011855 a(n) = floor(binomial(n,9)/9).

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 24, 79, 222, 556, 1271, 2701, 5402, 10264, 18662, 32658, 55268, 90798, 145278, 226997, 347172, 520758, 767433, 1112778, 1589683, 2240008, 3116533, 4285233, 5827917, 7845273
Offset: 0

Views

Author

Keywords

Crossrefs

A column of triangle A011857.

Programs

  • Mathematica
    Floor[Binomial[Range[0,80],9]/9] (* Harvey P. Dale, Aug 30 2016 *)
  • PARI
    a(n) = binomial(n,9)\9; \\ Michel Marcus, Jan 29 2018
  • Sage
    [floor(binomial(n,9)/9) for n in range(0,36)] # Zerinvary Lajos, Dec 01 2009