Danger
This article is not yet released. If you’re seeing it, please note that it is not complete.
Prouhet-Thue-Morse Research 7: Property Preservation¶
2026-05-25
Foundations & Binary Numeric Definitions
Binary Definitions - Textual & Sequential
Binary Definitions - Others
Binary Equivalence
Extending the Alphabet
Extended Equivalence
Property Preservation (you are here)
Complexity and Honorable Mentions
Introduction¶
Proving Persistence (Or Lack Thereof) of Original Properties¶
Palindrome¶
In base 2: \begin{equation}
\forall x, y : (x > 1) \land (0 \le y < 2^x), \;\; t_2(x)_y = t_2(x)_{2^x - y - 1}
\end{equation}
\note{(Find a citation for this)}
\begin{proof}
\par\noindent\par
\textbf{Assumption 1}: $n > 2$
\textbf{Assumption 2}: $t_n(x)$ is palindromic, for $x > 1$
\textbf{Observation 1}: $$t_n(x)_{n^x - 1} = p_n(n^x - 1) \equiv (n - 1)x \pmod{n}$$
\textbf{Inference 1}: By Assumption 2, $t_n(x)_0 = 0 = t_n(x)_{n^x - 1}$
\textbf{Observation 2}: $$t_n(x)_{n^x - 2} = p_n(n^x - 2) \equiv (n - 1)(x - 1) - 2 \pmod{n}$$
\textbf{Inference 2}: By Assumption 2, $t_n(x)_1 = 1 = t_n(x)_{n^x - 2}$
\textbf{Inference 3}: By Inferences 1 \& 2, \begin{equation}\begin{aligned}
t_n(x)_{n^x-1} &\equiv t_n(x)_{n^x-2} - 1 \\
(n - 1)x &\equiv (n - 1)(x - 1) - 2 - 1 \\
&\equiv (n - 1)(x - 1) + (n - 1) - 2 \\
&\equiv (n - 1)x - 2 \\
0 &\equiv - 2 \\
\end{aligned}
\end{equation}
\textbf{Contradiction!} While $n > 2$, these terms cannot be equal. This means that if the first and last terms match, the second and penultimate will not, and vice versa.
\end{proof}
Uniform Recurrence¶
Note
The Prouhet-Thue-Morse Sequence is a uniformly recurrent word: given any finite string X in the sequence, there is some length nX (often much longer than the length of X) such that X appears in every block of length nX. Tackle this by using \(T_{n,6}\)
Deriving Square Free Sequences¶
\note{Given a word $X : |X| > 1, X \in T_n$, $(X \concat X) \not\in T_n$. Square Free implies Overlap Free. The original \TMS is \textit{not} square-free, as it is not possible to construct a square-free sequence with an alphabet smaller than 3 (cite to Thue himself). However it can produce a square-free sequence easily by taking the difference of subsequent terms (A029883).}
Let $T_{dn}$ be the sequence generated by taking the difference of terms in the sequence $T_n$, such that $T_{d2} = \tuple{-1, 0, 1, -1, \ldots}$. The resulting sequence is square-free.
\begin{theorem}
\label{theo:square_free_dn}
This method does not generalize to $n \in \Integers_{\ge2}$
\begin{proof}
\par\noindent\par Proof by counterexample: \begin{itemize}
\item $T_{d3}(19\dots25) = \tuple{-1, 1, -1, -1, 1, -1}$
\item $T_{d4}(37\dots45) = \tuple{-1, -1, 2, -1, -1, -1, 2, -1}$
\item $\forall n : n > 4,\; T_{dn}(0\dots3) = \tuple{-1,-1,-1,-1}$
\end{itemize}
\end{proof}
\end{theorem}
Another method to make a square-free sequence from $T_2$ is to construct a different alphabet \cite{offner_repetitions} using pairs of terms. This generates a new sequence $T_{p2} = \tuple{01, 11, 10, 01, 10, 00, \dots}$
\begin{conjecture}
\label{conj:square_free_pn}
This method generalizes to $T_n$ by iterating pairwise, making $T_{pn}$, where $T_{pn}(x) = \tuple{T_n(x), T_n(x+1)}$.
\end{conjecture}
\begin{proof}
\note{Not sure how to do this rigorously, but computer testing hasn't found a counterexample}
\end{proof}
\begin{conjecture}
\label{conj:square_free_nxn}
This method generalizes to $T_n$ by iterating over a sliding window of size $n$, making $T_{n\times n}$, where $T_{n\times n}(x) = \tuple{T_n(x), T_n(x+1), \dots, T_n(x+n-1)}$.
\end{conjecture}
\begin{proof}
\note{Not sure how to do this rigorously, but computer testing hasn't found a counterexample}
\end{proof}
Overlap Free¶
Extensions of the Prouhet-Thue-Morse Sequence that comply with \(T_{n,8}\) are overlap-free [Tom].
Note
Is that true? I thought they used invertible matrices in this paper, and I don’t think the general solution in \(T_{n,8}\) are invertible. Needs followup.
Cube Free¶
Because extensions of the Prouhet-Thue-Morse Sequence that comply with \(T_{n,8}\) are overlap-free [Tom], they are also cube-free.
Note
Given a word \(X : |X| > 1, X \in T_n\), \((X \concat X \concat X) \not\in T_n\).
Aperiodicity¶
Note
Not totally sure how this should go, but I think a good approximation would be to show that the distance between the nearest two appearances of a substring grows to infinity much faster than the length of those substrings grows. For words of size greater than $n$, this seems feasible. For words in size 2 thru n, I think I need to show that the distance between repetitions is aperiodic. That should be equivalent to distance between repetitions of integers, since one of the definitions expands digits to words
Generalization of Prouhet-Terry-Escott Problem¶
The standard Prouhet-Terry-Escott problem [AL77, Pro51] is
\begin{quote}
Given $m > 1$ find $r > m$ and disjoint sets of distinct integers $\{a_1 \dots a_r\}$ and $\{b_1 \dots b_r\}$ such that:
\begin{equation}
\sum_{i=1}^r a_i^k = \sum_{i=1}^r b_i^k
\end{equation}
holds for every $k = 1 \dots m$
\end{quote}
Does this extension allow us to generalize to
\begin{quote}
Given $m > 1$ find $r > m$ and $n$ disjoint sets of distinct integers $\{s_{1,1} \dots s_{1,r}\}$, $\{s_{2,1} \dots s_{2,r}\}$, $\dots$, $\{s_{n,1} \dots s_{n,r}\}$ such that:
\begin{equation}
\forall x : 2 \le x \le n \left(\sum_{i=1}^r s_{1,i}^k = \sum_{i=1}^r s_{x,i}^k \right)
\end{equation}
holds for every $k = 1 \dots m$
\end{quote}
Note
I think [BORZ16] says yes, but I’m not certain I understand it yet
Maresh Multifractions¶
It is a well known result [AS99] that the infinite nested fraction defined by:
and that this converges to \(\tfrac{1}{\sqrt{2}}\). Can we generalize fractions in a way that this result holds for \(T_n\)?
Let a Maresh multifraction [McI] be
Note that in the case of \(n=2\), this reduces to a standard fraction: \(M_2(a, b) = \tfrac{a}{b}\). For all other cases, it rotates the input values such that they are equidistant around the unit circle, then takes their product.
\begin{conjecture}
\label{conj:maresh_multifraction}
Suppose for some multifraction of size $n$, we begin chunking the counting numbers into groups of $n$. Each of these groups then gets put into a multifraction, and these multifractions subsequently get put into a multifraction, and so on. We will call this sequence $F_n$
\begin{equation}
\begin{aligned}
F_n &= \lim_{x\to\infty} F_n(x) \\
F_n(1) &= M_n(1, \ldots, n-1) \\
F_n(2) &= M_n\left(\begin{aligned}
&M_n(1, \ldots, n), \\
&M_n(n+1, \ldots, 2n),\\
&\ldots, \\
&M_n((n-1)n+1, \ldots, n^2)
\end{aligned}\right)\\
\forall n: n &\ge 2, |F_n| = \left| \sum_{k=0}^\infty (k+1)(\omega_n^{T_n(k)}) \right| = \dfrac{1}{\sqrt{n}}
\end{aligned}
\end{equation}
\end{conjecture}
Fractal Turtle Geometry¶
Note
\(T_2\) generates the von Koch snowflake. Do other integer bases also generate fractals in a way that can be generalized? [McI, Sch]
Citations
Allan Adler and Shuo-Yen Robert Li. Magic cubes and prouhet sequences. The American Mathematical Monthly, 84(8):618–627, 1977. URL: https://doi.org/10.1080/00029890.1977.11994435, arXiv:https://doi.org/10.1080/00029890.1977.11994435, doi:10.1080/00029890.1977.11994435.
Jean-Paul Allouche and Jeffrey Shallit. The ubiquitous prouhet-thue-morse sequence. In C. Ding, T. Helleseth, and H. Niederreiter, editors, Sequences and their Applications, 1–16. London, 1999. Springer London.
Ethan D. Bolker, Carl Offner, Robert Richman, and Catalin Zara. The prouhet–tarry–escott problem and generalized thue–morse sequences. Journal of Combinatorics, 7(1):117–133, 2016. URL: http://dx.doi.org/10.4310/JOC.2016.v7.n1.a5, doi:10.4310/joc.2016.v7.n1.a5.
Yi Cai and Vilmos Komornik. Difference of cantor sets and frequencies in thue–morse type sequences. URL: https://arxiv.org/abs/2006.16119, arXiv:2006.16119.
Joshua N. Cooper and Aaron M. Dutle. Greedy galois games. URL: https://arxiv.org/abs/1110.1137, arXiv:1110.1137.
OEIS Foundation Inc. The on-line encyclopedia of integer sequences (oeis). OEIS Sequence ID: A287150. Fairest turn sequence for 3 players where the probability of a win for a player on his turn approaches 0. URL: https://oeis.org/A287150 (visited on 2024-10-24).
Matt McIrvin. Fractions, fractals and thue-morse sequences. A 3 part series of blog posts: 1) https://mmcirvin.dreamwidth.org/499645.html, 2) https://mmcirvin.dreamwidth.org/499830.html, 3) https://mmcirvin.dreamwidth.org/500104.html.
Diyath Pannipitiya. To symbolic dynamics through the thue-morse sequence. URL: https://arxiv.org/abs/2402.07015, arXiv:2402.07015.
Eugene Prouhet. Mémoire sur quelques relations entre les puissances des nombres. CR Acad. Sci. Paris, 33(225):1851, 1851.
Narad Rampersad. Words avoiding 7/3-powers and the thue-morse morphism. URL: https://arxiv.org/abs/math/0307401, arXiv:math/0307401.
Leif Schaumann. Generalized results on the convergence of thue-morse turtle curves. URL: https://arxiv.org/abs/2412.06183, arXiv:2412.06183.
C. Robinson Tompkins. Latin square thue-morse sequences are overlap-free. URL: https://arxiv.org/abs/0706.0907, arXiv:0706.0907.
Cite As
Click here to expand the bibtex entry.
@online{appleton_blog_0020, title = { Prouhet-Thue-Morse Research 7: Extended Equivalence }, author = { Olivia Appleton-Crocker }, editor = { Ultralee0 and Ruby }, language = { English }, version = { 1 }, date = { 2026-05-25 }, url = { https://blog.oliviaappleton.com/posts/0020-thue-morse-07 } }