This is a modified version of the kolakoski sequence.
Refer to the problem https://www.mathworks.com/matlabcentral/cody/problems/2371 for the original one.
for this case,
Given a particular initial vector a and length x, generate the kolakoski sequence (first x terms) from that vector.
For example if a=[2,1] and x=10 ; the sequence would look like --
2 2 1 1 2 1 2 2 1 2 2
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers17
Suggested Problems
-
Find third Side of a right triangle given hypotenuse and a side. No * - or other functions allowed
253 Solvers
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
13762 Solvers
-
541 Solvers
-
Write a function man that takes a row vector v and returns a matrix H as follows..
647 Solvers
-
Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock.
957 Solvers
More from this Author174
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
So it's kind of like Kolakoski; the number still gives the length at pos n, like A000002. However, the following number is decided according to a base named "a". So, if a=[4,2,3], the remainder 0,1 or 2 (since a has length 3) will be mapped to 4,2,3 in this order.
I recommend solving the problem in the description if you haven't already. You can reuse your code here. You will need to make some changes, but it will be easier than solving this one from zero. Numberphile has a video about it if you are still stuck.
I fail to understand some of the examples, where the initial terms of the output are not the same as the input (a) -
a = [1,3,1,2];
x=30;
y=[1, 3, 3, 3,...] %first 4 terms of y not equal to a
a = [2,1];
x=10;
y=[2, 2, 1, ...] %first 2 terms of y not equal to a
Although I highly doubt Dyuman's question is still open, for the benefit of anyone else wondering the same thing: a is not the beginning of the sequence, but rather the elements that get repeated in the sequence over and over again (in runs of varying lengths).