A372120 Numbers k such that the k-th composition in standard order is biquanimous.
0, 3, 10, 11, 13, 14, 15, 36, 37, 38, 39, 41, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61, 62, 63, 136, 137, 138, 139, 140, 141, 142, 143, 145, 147, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 162, 163, 165, 166, 167, 168, 169
Offset: 1
Keywords
Examples
The terms and corresponding compositions begin: 0: () 3: (1,1) 10: (2,2) 11: (2,1,1) 13: (1,2,1) 14: (1,1,2) 15: (1,1,1,1) 36: (3,3) 37: (3,2,1) 38: (3,1,2) 39: (3,1,1,1) 41: (2,3,1) 43: (2,2,1,1) 44: (2,1,3) 45: (2,1,2,1) 46: (2,1,1,2) 47: (2,1,1,1,1) 50: (1,3,2) 51: (1,3,1,1) 52: (1,2,3) 53: (1,2,2,1) 54: (1,2,1,2)
Crossrefs
These compositions are counted by A064914.
Programs
-
Mathematica
stc[n_]:=Differences[Prepend[Join @@ Position[Reverse[IntegerDigits[n,2]],1],0]]//Reverse; Select[Range[0,100],MemberQ[Total/@Subsets[stc[#]], Total[stc[#]]/2]&]
Comments