This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A104521 #28 Mar 09 2024 11:17:54 %S A104521 1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,1,0,1,1,0,1, %T A104521 1,0,1,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,1,0,1,1,0,1, %U A104521 1,0,1,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,1,0 %N A104521 Fixed point of the morphism 0->{1}, 1->{1,0,1}. %C A104521 A080764 and this sequence contain (arbitrarily?) long common substrings. %C A104521 Yes, A080764 and this sequence contain arbitrarily long common substrings, since the morphism 0 -> 1, 1 -> 110 of A080764 and the morphism 0 -> 1, 1 -> 101 generate the same language: the second morphism is a rotation of the first (so they are conjugate to each other). - _Michel Dekking_, Feb 03 2017 %C A104521 Zak Seidov points out (Mar 17 2006) that essentially the same sequence arises from the following process: Start with {0,1}; between each pair of digits, insert their sum written in binary. We get successively: %C A104521 {0,1,1} %C A104521 {0,1,1,1,0,1} %C A104521 {0,1,1,1,0,1,1,0,1,1,0,1,1} %C A104521 {0,1,1,1,0,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,1,0,1}, etc., %C A104521 which is the current sequence without the initial 1. %C A104521 A Sturmian word with slope sqrt(2)/2 and intercept (3-sqrt(2))/2; see formula. - _Jeffrey Shallit_, Mar 06 2024 %H A104521 Joerg Arndt, <a href="http://www.jjj.de/fxt/#fxtbook">Matters Computational (The Fxtbook)</a>, section 38.12.1 "Pell palindromes", p. 759 (fast algorithm to compute a function whose value at x=1/2 gives the constant 0.7321604330... whose binary value is 0.1011101101101...) %F A104521 a(n) = floor((n+2)a + b)-floor((n+1)a+b), where a = sqrt(2)/2, b = (3-sqrt(2))/2. - _Jeffrey Shallit_, Mar 06 2024 %F A104521 a(n) = round((n+1)/sqrt(2))-round(n/sqrt(2)). - _Chai Wah Wu_, Mar 07 2024 %e A104521 The evolution starting with 0 is: %e A104521 0 %e A104521 1 %e A104521 101 %e A104521 1011101 %e A104521 10111011011011101 %e A104521 10111011011011101101110110111011011011101 %t A104521 Nest[ Flatten[ # /. {0 -> {1}, 1 -> {1, 0, 1}}] &, 0, 7] (* _Robert G. Wilson v_, Apr 23 2005 *) %t A104521 h[n_] := Floor[n / Sqrt[2] + 1/2]; Table[h[n + 1] - h[n], {n, 0, 104}] %t A104521 (* _Peter Luschny_, Mar 06 2024 *) %o A104521 (zsh) %o A104521 #! /usr/bin/env zsh %o A104521 function N { local w=$1; for (( i=0; i<7; i+=1 )); do echo $w; w=$(echo $w | S); done } %o A104521 function S { sed 's/1/1_1/g; s/0/1/g; s/_/0/g;' } # 0->1, 1->101 %o A104521 N "0" %o A104521 # _Joerg Arndt_, Apr 24 2005 %Y A104521 Cf. A049473, A080764. %K A104521 nonn %O A104521 0,1 %A A104521 _Joerg Arndt_, Apr 20 2005