OFFSET
1,1
COMMENTS
The k-th composition in standard order (graded reverse-lexicographic, A066099) is obtained by taking the set of positions of 1's in the reversed binary expansion of k, prepending 0, taking first differences, and reversing again. This gives a bijective correspondence between nonnegative integers and integer compositions.
LINKS
EXAMPLE
The terms and corresponding compositions begin:
3: (1,1)
10: (2,2)
11: (2,1,1)
13: (1,2,1)
14: (1,1,2)
36: (3,3)
37: (3,2,1)
38: (3,1,2)
39: (3,1,1,1)
41: (2,3,1)
44: (2,1,3)
50: (1,3,2)
51: (1,3,1,1)
MATHEMATICA
stc[n_]:=Differences[Prepend[Join@@Position[Reverse[IntegerDigits[n, 2]], 1], 0]]//Reverse;
Select[Range[0, 1000], Max@@stc[#]==Total[stc[#]]/2&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Oct 14 2022
STATUS
approved