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.

A017778 Binomial coefficients C(62,n).

This page as a plain text file.
%I A017778 #25 Aug 11 2024 17:54:03
%S A017778 1,62,1891,37820,557845,6471002,61474519,491796152,3381098545,
%T A017778 20286591270,107518933731,508271323092,2160153123141,8308281242850,
%U A017778 29078984349975,93052749919920,273342452889765,739632519584070,1849081298960175,4282083008118300
%N A017778 Binomial coefficients C(62,n).
%C A017778 Row 62 of A007318.
%H A017778 Nathaniel Johnston, <a href="/A017778/b017778.txt">Table of n, a(n) for n = 0..62</a> (full sequence)
%F A017778 From _G. C. Greubel_, Nov 14 2018: (Start)
%F A017778 G.f.: (1+x)^62.
%F A017778 E.g.f.: 1F1(-62; 1; -x), where 1F1 is the confluent hypergeometric function. (End)
%p A017778 seq(binomial(62,n), n=0..62); # _Nathaniel Johnston_, Jun 24 2011
%t A017778 Binomial[62, Range[0,62]] (* _G. C. Greubel_, Nov 14 2018 *)
%t A017778 CoefficientList[Series[(1+x)^62,{x,0,20}],x] (* _Harvey P. Dale_, Aug 11 2024 *)
%o A017778 (Sage) [binomial(62, n) for n in range(18)] # _Zerinvary Lajos_, May 28 2009
%o A017778 (PARI) vector(62, n, n--; binomial(62,n)) \\ _G. C. Greubel_, Nov 14 2018
%o A017778 (Magma) [Binomial(62,n): n in [0..62]]; // _G. C. Greubel_, Nov 14 2018
%Y A017778 Cf. A010926-A011001, A017765-A017777, A017779-A017816.
%K A017778 nonn,fini,full,easy
%O A017778 0,2
%A A017778 _N. J. A. Sloane_