A353847 Composition run-sum transformation in terms of standard composition numbers. The a(k)-th composition in standard order is the sequence of run-sums of the k-th composition in standard order. Takes each index of a row of A066099 to the index of the row consisting of its run-sums.
0, 1, 2, 2, 4, 5, 6, 4, 8, 9, 8, 10, 12, 13, 10, 8, 16, 17, 18, 18, 20, 17, 22, 20, 24, 25, 24, 26, 20, 21, 18, 16, 32, 33, 34, 34, 32, 37, 38, 36, 40, 41, 32, 34, 44, 45, 42, 40, 48, 49, 50, 50, 52, 49, 54, 52, 40, 41, 40, 42, 36, 37, 34, 32, 64, 65, 66, 66
Offset: 0
Keywords
Examples
As a triangle: 0 1 2 2 4 5 6 4 8 9 8 10 12 13 10 8 16 17 18 18 20 17 22 20 24 25 24 26 20 21 18 16 These are the standard composition numbers of the following compositions (transposed): () (1) (2) (3) (4) (5) (2) (2,1) (3,1) (4,1) (1,2) (4) (3,2) (3) (2,2) (3,2) (1,3) (2,3) (1,2,1) (4,1) (2,2) (2,1,2) (4) (2,3) (1,4) (1,3,1) (1,4) (1,2,2) (2,3) (2,2,1) (3,2) (5)
Links
- Mathematics Stack Exchange, What is a sequence run? (answered 2011-12-01)
Crossrefs
Programs
-
Mathematica
stc[n_]:=Differences[Prepend[Join@@ Position[Reverse[IntegerDigits[n,2]],1],0]]//Reverse; stcinv[q_]:=Total[2^(Accumulate[Reverse[q]])]/2; Table[stcinv[Total/@Split[stc[n]]],{n,0,100}]
Comments