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(18,n).
0

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

%S 1,18,153,816,3060,8568,18564,31824,43758,48620,43758,31824,18564,

%T 8568,3060,816,153,18,1

%N Binomial coefficient C(18,n).

%C Row 18 of A007318.

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

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

%o (Sage) [binomial(18,m) for m in range(19)] # _Zerinvary Lajos_, Apr 21 2009

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

%Y Cf. A010926..A011001.

%K nonn,fini,full,easy

%O 0,2

%A _N. J. A. Sloane_