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.

A010926 Binomial coefficients C(10,n).

This page as a plain text file.
%I A010926 #26 Sep 08 2022 08:44:37
%S A010926 1,10,45,120,210,252,210,120,45,10,1
%N A010926 Binomial coefficients C(10,n).
%C A010926 Row 10 of A007318.
%p A010926 seq(binomial(10,n), n=0..10); # _Nathaniel Johnston_, Jun 23 2011
%t A010926 q = 10; Join[{a = 1}, Table[a = (q - n)*a/(n + 1), {n, 0, q - 1}]] (* _Vladimir Joseph Stephan Orlovsky_, Jul 09 2011 *)
%o A010926 (Sage) [binomial(10,m) for m in range(11)] # _Zerinvary Lajos_, Apr 21 2009
%o A010926 (PARI) a(n)=binomial(10,n) \\ _Charles R Greathouse IV_, Jan 08 2013
%o A010926 (Magma) [Binomial(10, n): n in [0..10]]; // _Vincenzo Librandi_, Jun 12 2013
%Y A010926 Cf. A285198, A010927-A011001.
%K A010926 nonn,fini,full,easy
%O A010926 0,2
%A A010926 _N. J. A. Sloane_