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.

A010940 Binomial coefficient C(24,n).

This page as a plain text file.
%I A010940 #28 Sep 08 2022 08:44:37
%S A010940 1,24,276,2024,10626,42504,134596,346104,735471,1307504,1961256,
%T A010940 2496144,2704156,2496144,1961256,1307504,735471,346104,134596,42504,
%U A010940 10626,2024,276,24,1
%N A010940 Binomial coefficient C(24,n).
%C A010940 Row 24 of A007318.
%p A010940 seq(binomial(24,n), n=0..24); # _Nathaniel Johnston_, Jun 24 2011
%t A010940 q = 24; Join[{a = 1}, Table[a = (q - n)*a/(n + 1), {n, 0, q - 1}]] (* _Vladimir Joseph Stephan Orlovsky_, Jul 10 2011 *)
%t A010940 Binomial[24,Range[0,24]] (* _Harvey P. Dale_, Jun 03 2014 *)
%o A010940 (Sage) [binomial(24,m) for m in range(25)] # _Zerinvary Lajos_, Apr 21 2009
%o A010940 (Magma) [Binomial(24, n): n in [0..24]]; // _Vincenzo Librandi_, Jun 12 2013
%Y A010940 Cf. A010926-A011001.
%K A010940 nonn,fini,full,easy
%O A010940 0,2
%A A010940 _N. J. A. Sloane_