A272729 a(n) is the number of repetitions of 2n-1 in A272727.
1, 2, 1, 3, 2, 1, 1, 4, 1, 3, 2, 2, 1, 1, 1, 5, 2, 1, 1, 4, 1, 3, 1, 3, 2, 2, 2, 1, 1, 1, 1, 6, 1, 3, 2, 2, 1, 1, 1, 5, 2, 1, 1, 4, 2, 1, 1, 4, 1, 3, 1, 3, 1, 3, 2, 2, 2, 2, 1, 1, 1, 1, 1, 7, 2, 1, 1, 4, 1, 3, 1, 3, 2, 2, 2, 1, 1, 1, 1, 6, 1, 3, 2, 2, 1, 1, 1, 5, 1, 3, 2, 2, 1, 1, 1, 5
Offset: 1
Keywords
Examples
The morphism acts as follows: 1->2; 2->1,3; 3->1,1,4; 4->1,1,1,5; etc. The trajectory starts as: 1 -> 2 -> 1,3 -> 2,1,1,4 -> 1,3,2,2,1,1,1,5 -> ... The result of k iterations is a series with 2^(k-1) terms; their sum is 2^k. If A001511 is laid out in a similar irregular triangle, each row would contain the same terms, albeit in a different order: 1, 2, 1,3, 1,2,1,4, 1,2,1,3,1,2,1,5...
Links
Programs
-
Mathematica
Flatten@NestList[Flatten[Append[ConstantArray[1, # - 1], # + 1] & /@ #] &, {1}, 7]
Comments