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.

A011852 a(n) = floor(binomial(n,6)/6).

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 1, 4, 14, 35, 77, 154, 286, 500, 834, 1334, 2062, 3094, 4522, 6460, 9044, 12435, 16824, 22432, 29516, 38371, 49335, 62790, 79170, 98962, 122713, 151032, 184594, 224150, 270526, 324632
Offset: 0

Views

Author

Keywords

Crossrefs

A column of triangle A011857.

Programs

  • PARI
    a(n) = binomial(n, 6)\6; \\ Michel Marcus, Jan 28 2018
  • Sage
    [floor(binomial(n,6)/6) for n in range(0,37)] # Zerinvary Lajos, Dec 01 2009