login
A286336
{1101->0}-transform of the Thue-Morse word A010060.
3
0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1
OFFSET
1
LINKS
EXAMPLE
As a word, A010060 = 0110100110010110100101100..., and replacing each 1101 by 0 gives 0000110010000101100000110...
MATHEMATICA
s = Nest[Flatten[# /. {0 -> {0, 1}, 1 -> {1, 0}}] &, {0}, 9] (* A010060 *)
w = StringJoin[Map[ToString, s]]
w1 = StringReplace[w, {"1101" -> "0"}]
st = ToCharacterCode[w1] - 48 (* A286336 *)
Flatten[Position[st, 0]] (* A286337 *)
Flatten[Position[st, 1]] (* A286338 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 08 2017
STATUS
approved