A365541 Irregular triangle read by rows where T(n,k) is the number of subsets of {1..n} containing two distinct elements summing to k = 3..2n-1.
1, 2, 2, 2, 4, 4, 7, 4, 4, 8, 8, 14, 14, 14, 8, 8, 16, 16, 28, 28, 37, 28, 28, 16, 16, 32, 32, 56, 56, 74, 74, 74, 56, 56, 32, 32, 64, 64, 112, 112, 148, 148, 175, 148, 148, 112, 112, 64, 64, 128, 128, 224, 224, 296, 296, 350, 350, 350, 296, 296, 224, 224, 128, 128
Offset: 2
Examples
Triangle begins: 1 2 2 2 4 4 7 4 4 8 8 14 14 14 8 8 16 16 28 28 37 28 28 16 16 32 32 56 56 74 74 74 56 56 32 32 Row n = 4 counts the following subsets: {1,2} {1,3} {1,4} {2,4} {3,4} {1,2,3} {1,2,3} {2,3} {1,2,4} {1,3,4} {1,2,4} {1,3,4} {1,2,3} {2,3,4} {2,3,4} {1,2,3,4} {1,2,3,4} {1,2,4} {1,2,3,4} {1,2,3,4} {1,3,4} {2,3,4} {1,2,3,4}
Crossrefs
Programs
-
Mathematica
Table[Length[Select[Subsets[Range[n]], MemberQ[Total/@Subsets[#,{2}],k]&]], {n,2,11}, {k,3,2n-1}]
Comments