A032777 Floor( n(n+1)(n+2)...(n+7) / (n+(n+1)+(n+2)+...+(n+7)) ).
0, 1120, 8247, 34892, 110880, 293505, 682787, 1441440, 2820208, 5189184, 9075733, 15209677, 24576340, 38478109, 58605120, 87115718, 126727310, 180818236, 253541302, 349949600, 476135234, 639381600, 848329835
Offset: 0
Keywords
Links
- Harvey P. Dale, Table of n, a(n) for n = 0..1000
Programs
-
Mathematica
With[{c=n+Range[0,7]},Table[Floor[Times@@c/Total[c]],{n,0,30}]] (* Harvey P. Dale, Sep 24 2021 *)
Comments