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.

A053129 Binomial coefficients C(2*n-6,7).

Original entry on oeis.org

8, 120, 792, 3432, 11440, 31824, 77520, 170544, 346104, 657800, 1184040, 2035800, 3365856, 5379616, 8347680, 12620256, 18643560, 26978328, 38320568, 53524680, 73629072, 99884400, 133784560, 177100560, 231917400, 300674088, 386206920, 491796152, 621216192
Offset: 7

Views

Author

Keywords

References

  • M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings).

Crossrefs

Programs

Formula

a(n) = binomial(2*n-6, 7) if n >= 7 else 0.
a(n) = -A053123(n,7), n >= 7; a(n) := 0, n=0..6, (eighth column of shifted Chebyshev's S-triangle, decreasing order).
a(n) = 8*A000973(n).
G.f.: (8+56*x+56*x^2+8*x^3)/(1-x)^8.
a(n) = (n-6)*(n-5)*(n-4)*(n-3)*(2*n-11)*(2*n-9)*(2*n-7)/315. - Wesley Ivan Hurt, Mar 25 2020
From Amiram Eldar, Oct 21 2022: (Start)
Sum_{n>=7} 1/a(n) = 777/5 - 224*log(2).
Sum_{n>=7} (-1)^(n+1)/a(n) = 441/10 - 14*Pi. (End)