OFFSET
1
COMMENTS
Conjecture: the number of letters (0's and 1's) in the n-th iterate of the mapping is given by A289177.
LINKS
Clark Kimberling, Table of n, a(n) for n = 1..10000
EXAMPLE
The first six iterates of the mapping:
00
0010
0010011
00100111001
00100111001011100
0010011100101110010010110
MATHEMATICA
z = 11; (* number of iterates *)
s = {0, 0}; w[0] = StringJoin[Map[ToString, s]];
w[n_] := StringReplace[w[n - 1], {"00" -> "0010", "01" -> "100", "10" -> "011"}]
TableForm[Table[w[n], {n, 0, 10}]]
st = ToCharacterCode[w[z]] - 48 (* A289174 *)
Flatten[Position[st, 0]] (* A289175 *)
Flatten[Position[st, 1]] (* A289176 *)
Table[StringLength[w[n]], {n, 0, 20}] (* A289177 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 29 2017
STATUS
approved