login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A017714 Binomial coefficients C(n,50). 5

%I #30 Sep 08 2022 08:44:43

%S 1,51,1326,23426,316251,3478761,32468436,264385836,1916797311,

%T 12565671261,75394027566,418094152866,2160153123141,10468434365991,

%U 47855699958816,207374699821536,855420636763836,3371363686069236,12736262814039336,46252743903616536

%N Binomial coefficients C(n,50).

%H G. C. Greubel, <a href="/A017714/b017714.txt">Table of n, a(n) for n = 50..10000</a>

%F From _G. C. Greubel_, Nov 03 2018: (Start)

%F G.f.: x^50/(1-x)^51.

%F E.g.f.: x^50*exp(x)/50!. (End)

%F From _Amiram Eldar_, Dec 16 2020: (Start)

%F Sum_{n>=50} 1/a(n) = 50/49.

%F Sum_{n>=50} (-1)^n/a(n) = A001787(50)*log(2) - A242091(50)/49! = 28147497671065600*log(2) - 302317348758761320570288162183704329 / 15495222521229983532 = 0.9811065191... (End)

%t Table[Binomial[n, 50], {n, 50, 5!}] (* _Vladimir Joseph Stephan Orlovsky_, Sep 25 2008 *)

%o (Sage) [binomial(n, 50) for n in range(50,68)] # _Zerinvary Lajos_, May 23 2009

%o (Python)

%o A017714_list, m = [], [1]*51

%o for _ in range(10**2):

%o A017714_list.append(m[-1])

%o for i in range(50):

%o m[i+1] += m[i] # _Chai Wah Wu_, Jan 24 2016

%o (PARI) for(n=50, 80, print1(binomial(n,50), ", ")) \\ _G. C. Greubel_, Nov 03 2018

%o (Magma) [Binomial(n,50): n in [50..80]]; // _G. C. Greubel_, Nov 03 2018

%Y Cf. A001787, A242091.

%K nonn

%O 50,2

%A _N. J. A. Sloane_

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)