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.

A285198 Binomial coefficients C(9,n).

Original entry on oeis.org

1, 9, 36, 84, 126, 126, 84, 36, 9, 1
Offset: 0

Views

Author

N. J. A. Sloane, May 02 2017

Keywords

Comments

Row 9 of A007318.

Crossrefs

Programs

  • Maple
    [seq(binomial(9,n), n=0..10)];
  • Mathematica
    Table[Binomial[9,n],{n,0,10}] (* Harvey P. Dale, Nov 11 2022 *)