login
A288932
Fixed point of the mapping 00->1000, 10->10101, starting with 00.
5
1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1
OFFSET
1
COMMENTS
Conjecture: The number of letters (0's and 1's) in the n-th iterate of the mapping is given by A123720.
The first five iterates of the mapping:
00
1000
101011000
10101101011101011000
1010110101110101101011110101101011101011000
No iterate is an initial subword of its successor.
LINKS
FORMULA
a(n+1) = A308185(n). - Michel Dekking, Feb 15 2021
MATHEMATICA
s = {0, 0}; w[0] = StringJoin[Map[ToString, s]];
w[n_] := StringReplace[w[n - 1], {"00" -> "1000", "10" -> "10101"}]
Table[w[n], {n, 0, 8}]
st = ToCharacterCode[w[11]] - 48 (* A288932 *)
Flatten[Position[st, 0]] (* A288933 *)
Flatten[Position[st, 1]] (* A288934 *)
Table[StringLength[w[n]], {n, 1, 35}] (* A123720 conjectured *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 25 2017
EXTENSIONS
Corrected by Clark Kimberling, Feb 13 2021
STATUS
approved