A357628 Numbers k such that the reversed k-th composition in standard order has skew-alternating sum 0.
0, 3, 10, 14, 15, 36, 43, 44, 45, 52, 54, 58, 59, 61, 63, 136, 147, 149, 152, 153, 166, 168, 170, 175, 178, 179, 181, 183, 185, 190, 200, 204, 211, 212, 213, 217, 219, 221, 228, 230, 234, 235, 237, 239, 242, 246, 247, 250, 254, 255, 528, 547, 549, 553, 560
Offset: 1
Keywords
Examples
The sequence together with the corresponding compositions begins: 0: () 3: (1,1) 10: (2,2) 14: (1,1,2) 15: (1,1,1,1) 36: (3,3) 43: (2,2,1,1) 44: (2,1,3) 45: (2,1,2,1) 52: (1,2,3) 54: (1,2,1,2) 58: (1,1,2,2) 59: (1,1,2,1,1) 61: (1,1,1,2,1) 63: (1,1,1,1,1,1)
Links
Crossrefs
Programs
-
Mathematica
stc[n_]:=Differences[Prepend[Join @@ Position[Reverse[IntegerDigits[n,2]],1],0]]//Reverse; skats[f_]:=Sum[f[[i]]*(-1)^(1+Ceiling[(i+1)/2]),{i,Length[f]}]; Select[Range[0,100],skats[Reverse[stc[#]]]==0&]
Comments