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.
%I A017797 #23 Jun 28 2023 21:53:54 %S A017797 1,81,3240,85320,1663740,25621596,324540216,3477216600,32164253550, %T A017797 260887834350,1878392407320,12124169174520,70724320184700, %U A017797 375382930211100,1823288518168200,8144022047817960,33594090947249085,128447994798305325,456703981505085600 %N A017797 Binomial coefficients C(81,n). %C A017797 Row 81 of A007318. %H A017797 Nathaniel Johnston, <a href="/A017797/b017797.txt">Table of n, a(n) for n = 0..81</a> (full sequence) %F A017797 From _G. C. Greubel_, Nov 15 2018: (Start) %F A017797 G.f.: (1+x)^81. %F A017797 E.g.f.: 1F1(-81; 1; -x), where 1F1 is the confluent hypergeometric function. (End) %p A017797 seq(binomial(81,n), n=0..81); # _Nathaniel Johnston_, Jun 24 2011 %t A017797 Binomial[81, Range[0,81]] (* _G. C. Greubel_, Nov 15 2018 *) %o A017797 (Sage) [binomial(81, n) for n in range(16)] # _Zerinvary Lajos_, May 29 2009 %o A017797 (PARI) vector(81, n, n--; binomial(81,n)) \\ _G. C. Greubel_, Nov 15 2018 %o A017797 (Magma) [Binomial(81,n): n in [0..81]]; // _G. C. Greubel_, Nov 15 2018 %o A017797 (GAP) List([0..81], n -> Binomial(81,n)); # _G. C. Greubel_, Nov 15 2018 %Y A017797 Cf. A010926-A011001, A017765-A017796, A017798-A017816. %K A017797 nonn,fini,full,easy %O A017797 0,2 %A A017797 _N. J. A. Sloane_