login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A289001 Fixed point of the mapping 00->0010, 01->001, 10->010, starting with 00. 6
0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1
COMMENTS
This coincides with the Pell word A171588, the fixed point of the morphism 0->001, 1->0. This was conjectured by R. J. Mathar, Jul 07 2017 and proved by Dekking and Keane in 2022. As observed by Michel Dekking, Mar 09 2022, this also proves the two conjectures about the positions of 0's and 1's stated in the MATHEMATICA section. - N. J. A. Sloane, Mar 09 2022
Conjecture: the number of letters (0's and 1's) in the n-th iterate of the mapping is given by A289004.
LINKS
Michel Dekking and Mike Keane, Two-block substitutions and morphic words, arXiv:2202.13548 [math.CO], 2022.
EXAMPLE
The first seven iterates of the mapping:
00
0010
0010010
00100100010
001001000100100010
0010010001001000100100100010010
0010010001001000100100100010010001001001000100100010
MATHEMATICA
z = 10; (* number of iterates *)
s = {0, 0}; w[0] = StringJoin[Map[ToString, s]];
w[n_] := StringReplace[w[n - 1], {"00" -> "0010", "01" -> "001", "10" -> "010"}]
TableForm[Table[w[n], {n, 0, 10}]]
st = ToCharacterCode[w[z]] - 48 (* A289001 *)
Flatten[Position[st, 0]] (* A001951 conjectured *)
Flatten[Position[st, 1]] (* A001952 conjectured *)
Table[StringLength[w[n]], {n, 0, 20}] (* A289004 *)
CROSSREFS
Sequence in context: A288203 A238470 A286748 * A171588 A289035 A276397
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 25 2017
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 11:18 EDT 2024. Contains 371906 sequences. (Running on oeis4.)