A017815 Binomial coefficients C(99,n).
1, 99, 4851, 156849, 3764376, 71523144, 1120529256, 14887031544, 171200862756, 1731030945644, 15579278510796, 126050526132804, 924370524973896, 6186171974825304, 38000770702498296, 215337700647490344, 1130522928399324306, 5519611944537877494
Offset: 0
Links
- Nathaniel Johnston, Table of n, a(n) for n = 0..99 (full sequence)
Programs
-
Maple
seq(binomial(99,n), n=0..99); # Nathaniel Johnston, Jun 24 2011
-
Mathematica
Binomial[99, Range[0, 99]] (* Harvey P. Dale, Nov 01 2023 *)
-
Sage
[binomial(99, n) for n in range(16)] # Zerinvary Lajos, May 29 2009
Comments