A361802 Irregular triangle read by rows where T(n,k) is the number of k-subsets of {-n+1,...,n} with sum 0, for k = 1,...,2n-1.
1, 1, 1, 1, 1, 2, 3, 2, 1, 1, 3, 6, 7, 5, 2, 1, 1, 4, 10, 16, 18, 14, 8, 3, 1, 1, 5, 15, 31, 46, 51, 43, 27, 12, 3, 1, 1, 6, 21, 53, 98, 139, 155, 134, 88, 43, 16, 4, 1, 1, 7, 28, 83, 184, 319, 441, 486, 424, 293, 161, 68, 21, 4, 1
Offset: 1
Examples
Triangle begins: 1 1 1 1 1 2 3 2 1 1 3 6 7 5 2 1 1 4 10 16 18 14 8 3 1 1 5 15 31 46 51 43 27 12 3 1 1 6 21 53 98 139 155 134 88 43 16 4 1 1 7 28 83 184 319 441 486 424 293 161 68 21 4 1 Row n = 3 counts the following subsets: {0} {-1,1} {-1,0,1} {-2,-1,0,3} {-2,-1,0,1,2} {-2,2} {-2,0,2} {-2,-1,1,2} {-2,-1,3}
Crossrefs
Programs
-
Mathematica
Table[Length[Select[Subsets[Range[-n+1,n],{k}],Total[#]==0&]],{n,6},{k,2n-1}]
Comments