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.

A017791 Binomial coefficients C(75,n).

This page as a plain text file.
%I A017791 #23 Jun 28 2023 21:51:21
%S A017791 1,75,2775,67525,1215450,17259390,201359550,1984829850,16871053725,
%T A017791 125595622175,828931106355,4898229264825,26123889412400,
%U A017791 126600387152400,560658857389200,2280012686716080,8550047575185300,29673694525643100,95615237915961100
%N A017791 Binomial coefficients C(75,n).
%C A017791 Row 75 of A007318.
%H A017791 Nathaniel Johnston, <a href="/A017791/b017791.txt">Table of n, a(n) for n = 0..75</a> (full sequence)
%F A017791 From _G. C. Greubel_, Nov 15 2018: (Start)
%F A017791 G.f.: (1+x)^75.
%F A017791 E.g.f.: 1F1(-75; 1; -x), where 1F1 is the confluent hypergeometric function. (End)
%p A017791 seq(binomial(75,n), n=0..75); # _Nathaniel Johnston_, Jun 24 2011
%t A017791 Binomial[75, Range[0,75]] (* _G. C. Greubel_, Nov 15 2018 *)
%o A017791 (Sage) [binomial(75, n) for n in range(17)] # _Zerinvary Lajos_, May 28 2009
%o A017791 (PARI) vector(75, n, n--; binomial(75,n)) \\ _G. C. Greubel_, Nov 15 2018
%o A017791 (Magma) [Binomial(75,n): n in [0..75]]; // _G. C. Greubel_, Nov 15 2018
%o A017791 (GAP) List([0..75], n -> Binomial(75,n)); # _G. C. Greubel_, Nov 15 2018
%Y A017791 Cf. A010926-A011001, A017765-A017790, A017792-A017816.
%K A017791 nonn,fini,full,easy
%O A017791 0,2
%A A017791 _N. J. A. Sloane_