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.

A053130 Binomial coefficients C(2*n-7,8).

This page as a plain text file.
%I A053130 #34 Oct 21 2022 09:45:12
%S A053130 9,165,1287,6435,24310,75582,203490,490314,1081575,2220075,4292145,
%T A053130 7888725,13884156,23535820,38608020,61523748,95548245,145008513,
%U A053130 215553195,314457495,450978066,636763050,886322710,1217566350,1652411475,2217471399,2944827765,3872894697
%N A053130 Binomial coefficients C(2*n-7,8).
%D A053130 M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings).
%H A053130 Vincenzo Librandi, <a href="/A053130/b053130.txt">Table of n, a(n) for n = 8..200</a>
%H A053130 M. Abramowitz and I. A. Stegun, eds., <a href="http://www.convertit.com/Go/ConvertIt/Reference/AMS55.ASP">Handbook of Mathematical Functions</a>, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
%H A053130 Milan Janjić, <a href="https://pmf.unibl.org/wp-content/uploads/2017/10/enumfor.pdf">Two Enumerative Functions</a>
%H A053130 <a href="/index/Rec#order_09">Index entries for linear recurrences with constant coefficients</a>, signature (9,-36,84,-126,126,-84,36,-9,1).
%H A053130 <a href="/index/Ch#Cheby">Index entries for sequences related to Chebyshev polynomials</a>.
%F A053130 a(n) = binomial(2*n-7, 8) if n >= 8 else 0.
%F A053130 G.f.: (9+84*x+126*x^2+36*x^3+x^4)/(1-x)^9.
%F A053130 a(n) = A053123(n,8), n >= 8; a(n) := 0, n=0..7, (ninth column of shifted Chebyshev's S-triangle, decreasing order).
%F A053130 From _Amiram Eldar_, Oct 21 2022: (Start)
%F A053130 Sum_{n>=8} 1/a(n) = 37276/105 - 512*log(2).
%F A053130 Sum_{n>=8} (-1)^n/a(n) = 592/21 - 16*Pi + 32*log(2). (End)
%t A053130 Table[Binomial[2*n-7,8], {n,8,50}] (* _G. C. Greubel_, Aug 26 2018 *)
%o A053130 (Magma) [Binomial(2*n-7, 8): n in [8..50]]; // _Vincenzo Librandi_, Apr 07 2011
%o A053130 (PARI) for(n=8,50, print1(binomial(2*n-7,8), ", ")) \\ _G. C. Greubel_, Aug 26 2018
%Y A053130 Cf. A053123, A053129.
%K A053130 nonn,easy
%O A053130 8,1
%A A053130 _Wolfdieter Lang_