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.

A053137 Binomial coefficients C(2*n+8,8).

This page as a plain text file.
%I A053137 #33 Mar 29 2024 02:12:59
%S A053137 1,45,495,3003,12870,43758,125970,319770,735471,1562275,3108105,
%T A053137 5852925,10518300,18156204,30260340,48903492,76904685,118030185,
%U A053137 177232627,260932815,377348994,536878650,752538150,1040465790,1420494075,1916797311,2558620845,3381098545
%N A053137 Binomial coefficients C(2*n+8,8).
%C A053137 Even-indexed members of ninth column of Pascal's triangle A007318.
%C A053137 Number of standard tableaux of shape (2n+1,1^8). - _Emeric Deutsch_, May 30 2004
%H A053137 Vincenzo Librandi, <a href="/A053137/b053137.txt">Table of n, a(n) for n = 0..200</a>
%H A053137 Milan Janjić, <a href="https://pmf.unibl.org/wp-content/uploads/2017/10/enumfor.pdf">Two Enumerative Functions</a>.
%H A053137 <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).
%F A053137 a(n) = binomial(2*n+8, 8) = A000581(2*n+8).
%F A053137 G.f.: (1+36*x+126*x^2+84*x^3+9*x^4) / (1-x)^9 = (1+3*x) * (3*x^3+27*x^2+33*x+1) / (1-x)^9.
%F A053137 From _Amiram Eldar_, Nov 03 2022: (Start)
%F A053137 Sum_{n>=0} 1/a(n) = 512*log(2) - 5308/15.
%F A053137 Sum_{n>=0} (-1)^n/a(n) = 16*Pi + 32*log(2) - 1072/15. (End)
%t A053137 Table[Binomial[2*n+8, 8], {n, 0, 30}] (* _G. C. Greubel_, Sep 03 2018 *)
%t A053137 LinearRecurrence[{9,-36,84,-126,126,-84,36,-9,1},{1,45,495,3003,12870,43758,125970,319770,735471},30] (* _Harvey P. Dale_, Jul 02 2022 *)
%o A053137 (Magma) [Binomial(2*n+8,8): n in [0..30]]; // _Vincenzo Librandi_, Oct 07 2011
%o A053137 (PARI) a(n)=binomial(2*n+8,8) \\ _Charles R Greathouse IV_, Oct 07 2015
%Y A053137 Cf. A007318, A053136, A000581, A053130.
%K A053137 nonn,easy
%O A053137 0,2
%A A053137 _Wolfdieter Lang_