A352515 Number of weak nonexcedances (parts on or below the diagonal) of the n-th composition in standard order.
0, 1, 0, 2, 0, 1, 2, 3, 0, 1, 1, 2, 1, 3, 3, 4, 0, 1, 1, 2, 0, 2, 2, 3, 1, 2, 3, 4, 3, 4, 4, 5, 0, 1, 1, 2, 0, 2, 2, 3, 0, 1, 2, 3, 2, 3, 3, 4, 1, 2, 2, 3, 3, 4, 4, 5, 2, 4, 4, 5, 4, 5, 5, 6, 0, 1, 1, 2, 0, 2, 2, 3, 0, 1, 2, 3, 2, 3, 3, 4, 0, 1, 1, 2, 2, 3, 3
Offset: 0
Keywords
Examples
The 89th composition in standard order is (2,1,3,1), with weak nonexcedances {2,3,4}, so a(89) = 3.
Links
- MathOverflow, Why 'excedances' of permutations? [closed].
Crossrefs
Programs
-
Mathematica
stc[n_]:=Differences[Prepend[Join@@ Position[Reverse[IntegerDigits[n,2]],1],0]]//Reverse; paw[y_]:=Length[Select[Range[Length[y]],#>=y[[#]]&]]; Table[paw[stc[n]],{n,0,30}]
Comments