A017816 Binomial coefficients C(100,n).
1, 100, 4950, 161700, 3921225, 75287520, 1192052400, 16007560800, 186087894300, 1902231808400, 17310309456440, 141629804643600, 1050421051106700, 7110542499799200, 44186942677323600, 253338471349988640, 1345860629046814650, 6650134872937201800
Offset: 0
Links
- Nathaniel Johnston, Table of n, a(n) for n = 0..100 (full sequence)
Programs
-
Maple
seq(binomial(100,n), n=0..100); # Nathaniel Johnston, Jun 24 2011
-
Mathematica
Binomial[100,Range[0,20]] (* Harvey P. Dale, Jul 08 2016 *)
-
Sage
[binomial(100, n) for n in range(16)] # Zerinvary Lajos, May 29 2009
Comments