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!)
A290742 Orbit of word "1" under the 3-shift tag system over the alphabet {1,2} defined in the Comments. 4

%I #17 Mar 15 2022 12:32:01

%S 1,12,112,2112,21221222,212221221222,2212212221221222,

%T 22122212212221221222,222122122212212221221222,

%U 1221222122122212212221221222,12221221222122122212212222112,212212221221222122122221122112,2122212212221221222211221121221222

%N Orbit of word "1" under the 3-shift tag system over the alphabet {1,2} defined in the Comments.

%C This tag system maps a word w over {1,2} to w', where if w begins with 1, w' is obtained by appending 2112 to w and deleting the first three letters, or if w begins with 2, w' is obtained by appending 1221222 to w and deleting the first three letters.

%C This is a 3-shift version of a 5-shift tag system studied in [De Mol, p. 307].

%H Michael S. Branicky, <a href="/A290742/b290742.txt">Table of n, a(n) for n = 1..322</a>

%H Liesbeth De Mol, <a href="http://www.clps.ugent.be/sites/default/files/publications/dissertation.pdf">Tracing unsolvability. A historical, mathematical and philosophical analysis with a special focus on tag systems</a>, Ph.D. Thesis, Universiteit Gent. See page 307.

%p with(StringTools);

%p f1:=proc(w) local L, t2, t1, ws, w2;

%p t1:="2112"; t2:="1221222"; ws:=convert(w, string);

%p if ws[1]="1" then w2:=Join([ws, t1], ""); else w2:=Join([ws, t2], ""); fi;

%p L:=length(w2); if L <= 3 then return(-1); fi;

%p w2[4..L]; end;

%p # and apply f1 repeatedly to "1"

%o (Python)

%o from itertools import islice

%o def agen(w="1"):

%o while True:

%o yield int(w)

%o w += ("2112" if w[0] == "1" else "1221222")

%o w = w[3:]

%o print(list(islice(agen(), 13))) # _Michael S. Branicky_, Mar 15 2022

%Y Cf. A284116, A290741.

%K nonn

%O 1,2

%A _N. J. A. Sloane_, Aug 11 2017

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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)