login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Binomial coefficient C(29,n).
0

%I #18 Sep 08 2022 08:44:37

%S 1,29,406,3654,23751,118755,475020,1560780,4292145,10015005,20030010,

%T 34597290,51895935,67863915,77558760,77558760,67863915,51895935,

%U 34597290,20030010,10015005,4292145,1560780,475020,118755,23751,3654,406,29,1

%N Binomial coefficient C(29,n).

%C Row 29 of A007318.

%p seq(binomial(29,n), n=0..29); # _Nathaniel Johnston_, Jun 24 2011

%t q = 29; Join[{a = 1}, Table[a = (q - n)*a/(n + 1), {n, 0, q - 1}]] (* _Vladimir Joseph Stephan Orlovsky_, Jul 10 2011 *)

%t Binomial[29,Range[0,29]] (* _Harvey P. Dale_, Feb 04 2019 *)

%o (Sage) [binomial(29, n) for n in range(30)] # _Zerinvary Lajos_, May 21 2009

%o (Magma) [Binomial(29, n): n in [0..29]]; // _Vincenzo Librandi_, Jun 12 2013

%Y Cf. A010926-A011001.

%K nonn,fini,full,easy

%O 0,2

%A _N. J. A. Sloane_.