A357184 Numbers k such that the k-th composition in standard order has the same length as its alternating sum.
0, 1, 9, 19, 22, 28, 34, 69, 74, 84, 104, 132, 135, 141, 153, 177, 225, 265, 271, 274, 283, 286, 292, 307, 310, 316, 328, 355, 358, 364, 376, 400, 451, 454, 460, 472, 496, 520, 523, 526, 533, 538, 553, 562, 593, 610, 673, 706, 833, 898, 1041, 1047, 1053, 1058
Offset: 1
Keywords
Examples
The sequence together with the corresponding compositions begins: 0: () 1: (1) 9: (3,1) 19: (3,1,1) 22: (2,1,2) 28: (1,1,3) 34: (4,2) 69: (4,2,1) 74: (3,2,2) 84: (2,2,3) 104: (1,2,4) 132: (5,3) 135: (5,1,1,1) 141: (4,1,2,1) 153: (3,1,3,1) 177: (2,1,4,1) 225: (1,1,5,1)
Links
Crossrefs
See link for sequences related to standard compositions.
These compositions are counted by A357182.
The case of partitions is counted by A357189.
A011782 counts compositions.
A124754 gives alternating sums of standard compositions.
A238279 counts compositions by sum and number of maximal runs.
A357136 counts compositions by alternating sum.
Programs
-
Mathematica
stc[n_]:=Differences[Prepend[Join @@ Position[Reverse[IntegerDigits[n,2]],1],0]]//Reverse; ats[y_]:=Sum[(-1)^(i-1)*y[[i]],{i,Length[y]}]; Select[Range[0,100],Length[stc[#]]==ats[stc[#]]&]
Comments