OFFSET
1,2
COMMENTS
First differs from A356844 in having 82, corresponding to the composition (2,3,2).
The first sums of a nonempty sequence (a, b, c, d, ...) are (a+b, b+c, c+d, ...).
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.
EXAMPLE
For 72 we have the standard composition (3,4), which is the first sums of two compositions: (1,2,2) and (2,1,3), so 72 is not in the sequence.
For 82 we have the standard composition (2,3,2), which is not the first sums of any composition, so 82 is in the sequence.
For 658 we have the standard composition (2,3,3,2), which is the first sums of (1,1,2,1,1), so 658 is not in the sequence.
The terms together with standard compositions begin:
1: (1)
3: (1,1)
5: (2,1)
6: (1,2)
7: (1,1,1)
9: (3,1)
11: (2,1,1)
12: (1,3)
13: (1,2,1)
14: (1,1,2)
15: (1,1,1,1)
17: (4,1)
19: (3,1,1)
21: (2,2,1)
22: (2,1,2)
23: (2,1,1,1)
24: (1,4)
25: (1,3,1)
26: (1,2,2)
27: (1,2,1,1)
28: (1,1,3)
29: (1,1,2,1)
MATHEMATICA
stc[n_]:=Differences[Prepend[Join @@ Position[Reverse[IntegerDigits[n, 2]], 1], 0]]//Reverse;
uncha[tar_, ini_]:=(cur={ini}; Do[AppendTo[cur, tar[[k]]-If[k==1, ini, cur[[k]]]], {k, Length[tar]}]; cur);
Select[Range[100], Length[Select[Table[uncha[stc[#], i], {i, Max[stc[#]]}], Min@@#>=1&]]==0&]
CROSSREFS
These indicate zeros in the pre-bisected A390675.
The unique version is A390745.
A011782 counts compositions.
A066099 lists all compositions in standard order.
A357213 counts compositions by sum of first sums.
A390432 lists first sums of standard compositions.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Nov 23 2025
STATUS
approved
