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.

A010927 Binomial coefficient C(11,n).

This page as a plain text file.
%I A010927 #24 Jan 01 2023 14:58:40
%S A010927 1,11,55,165,330,462,462,330,165,55,11,1
%N A010927 Binomial coefficient C(11,n).
%C A010927 Row 11 of A007318.
%p A010927 seq(binomial(11,n), n=0..11); # _Nathaniel Johnston_, Jun 23 2011
%t A010927 q = 11; Join[{a = 1}, Table[a = (q - n)*a/(n + 1), {n, 0, q - 1}]] (* _Vladimir Joseph Stephan Orlovsky_, Jul 09 2011 *)
%t A010927 Binomial[11,Range[0,11]] (* _Harvey P. Dale_, Jan 01 2023 *)
%o A010927 (Sage) [binomial(11,m) for m in range(12)] # _Zerinvary Lajos_, Apr 21 2009
%o A010927 (Magma) [Binomial(11, n): n in [0..11]]; // _Vincenzo Librandi_, Jun 12 2013
%Y A010927 Cf. A010926..A011001, A017765..A017816.
%K A010927 nonn,fini,full,easy
%O A010927 0,2
%A A010927 _N. J. A. Sloane_