A017811 Binomial coefficients C(95,n).
1, 95, 4465, 138415, 3183545, 57940519, 869107785, 11050084695, 121550931645, 1174992339235, 10104934117421, 78083581816435, 546585072715045, 3489735464257595, 20439879147794485, 110375347398090219, 551876736990451095
Offset: 0
Links
- Nathaniel Johnston, Table of n, a(n) for n = 0..95 (full sequence)
Programs
-
Maple
seq(binomial(95,n), n=0..95); # Nathaniel Johnston, Jun 24 2011
-
Mathematica
Binomial[95,Range[0,20]] (* Harvey P. Dale, Jan 19 2012 *)
-
Sage
[binomial(95, n) for n in range(16)] # Zerinvary Lajos, May 29 2009
Comments