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.

A005719 Quadrinomial coefficients.

Original entry on oeis.org

2, 12, 40, 101, 216, 413, 728, 1206, 1902, 2882, 4224, 6019, 8372, 11403, 15248, 20060, 26010, 33288, 42104, 52689, 65296, 80201, 97704, 118130, 141830, 169182, 200592, 236495, 277356, 323671, 375968, 434808, 500786, 574532, 656712, 748029, 849224, 961077
Offset: 2

Views

Author

Keywords

References

  • L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 78.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

a(n)= A008287(n, 5), n >= 2 (sixth column of quadrinomial coefficients).

Programs

Formula

a(n)= binomial(n, 2)*(n^3+11*n^2+46*n-24)/60, n >= 2.
G.f.: (x^2)*(2-2*x^2+x^3)/(1-x)^6. (numerator polynomial is N4(5, x) from A063421.)
a(n) = 2*binomial(n,2) + 6*binomial(n,3) + 4*binomial(n,4) + binomial(n,5) (see comment in A071675). - Vladimir Shevelev and Peter J. C. Moses, Jun 22 2012