A017812 Binomial coefficients C(96,n).
1, 96, 4560, 142880, 3321960, 61124064, 927048304, 11919192480, 132601016340, 1296543270880, 11279926456656, 88188515933856, 624668654531480, 4036320536972640, 23929614612052080, 130815226545884704, 662252084388541314, 3116480397122547360
Offset: 0
Links
- Nathaniel Johnston, Table of n, a(n) for n = 0..96 (full sequence)
Programs
-
Maple
seq(binomial(96,n), n=0..96); # Nathaniel Johnston, Jun 24 2011
-
Mathematica
Binomial[96,Range[0,20]] (* Harvey P. Dale, May 09 2012 *)
-
Sage
[binomial(96, n) for n in range(16)] # Zerinvary Lajos, May 29 2009
Comments