<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.bbchallenge.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Azerty</id>
	<title>BusyBeaverWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.bbchallenge.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Azerty"/>
	<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/wiki/Special:Contributions/Azerty"/>
	<updated>2026-05-01T11:12:31Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=CounterScript&amp;diff=7244</id>
		<title>CounterScript</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=CounterScript&amp;diff=7244"/>
		<updated>2026-04-22T19:03:24Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* Champions */ Set BBCS(8) and BBCS(9) status to proven.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;CounterScript&#039;&#039;&#039; is a minimal counter-based programming language designed for &#039;&#039;&#039;Busy Beaver–style program enumeration and analysis&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
It features a very small instruction set operating over an unbounded set of nonnegative integer variables (&#039;&#039;counters&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BBCS&#039;&#039;&#039;(n) is the Busy Beaver function for &#039;&#039;&#039;CounterScript&#039;&#039;&#039; programs.&lt;br /&gt;
&lt;br /&gt;
= Definition =&lt;br /&gt;
A CounterScript program consists of a finite sequence of instructions drawn from three primitives:&lt;br /&gt;
&lt;br /&gt;
* Increment a counter&lt;br /&gt;
* Conditional decrement&lt;br /&gt;
* While loop&lt;br /&gt;
&lt;br /&gt;
All counters are initialized to &amp;lt;code&amp;gt;0&amp;lt;/code&amp;gt; and can grow without bound.&lt;br /&gt;
&lt;br /&gt;
The model is closely related to &#039;&#039;&#039;Minsky register machines,&#039;&#039;&#039; &#039;&#039;&#039;Fractran&#039;&#039;&#039; and &#039;&#039;&#039;Brainfuck&#039;&#039;&#039;, and is therefore [[Turing-complete]].&lt;br /&gt;
&lt;br /&gt;
== Instructions ==&lt;br /&gt;
Instructions are executed one by one from left to right.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!Command&lt;br /&gt;
!Definition&lt;br /&gt;
|-&lt;br /&gt;
|Increment&lt;br /&gt;
|&amp;lt;code&amp;gt;A++&amp;lt;/code&amp;gt;&lt;br /&gt;
|Increment counter A by 1&lt;br /&gt;
|-&lt;br /&gt;
|Decrement&lt;br /&gt;
|&amp;lt;code&amp;gt;A--&amp;lt;/code&amp;gt;&lt;br /&gt;
|Decrement counter A by 1 if A &amp;gt; 0&lt;br /&gt;
|-&lt;br /&gt;
|While loop&lt;br /&gt;
|&amp;lt;code&amp;gt;while A {...}&amp;lt;/code&amp;gt;&lt;br /&gt;
|Executes the loop body while &amp;lt;code&amp;gt;x &amp;gt; 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Program size =&lt;br /&gt;
The &#039;&#039;&#039;length&#039;&#039;&#039; of a CounterScript program is defined as the total number of instructions.&lt;br /&gt;
&lt;br /&gt;
By example, &amp;lt;code&amp;gt;A++; while A {A--; B++;}&amp;lt;/code&amp;gt; has length 4.&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible&amp;quot;&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!n&lt;br /&gt;
!BBCS(n)&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++; A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++; A++; A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; while A {A--; B++; B++; B++;}&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++; while A {A--; B++; B++; B++;}&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|≥16&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++; while A {A--; B++; B++; B++; B++;}&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|≥20&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++; A++; while A {A--; B++; B++; B++; B++;}&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|≥25&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++; A++; while A {A--; B++; B++; B++; B++; B++;}&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Functions]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=7150</id>
		<title>Busy Beaver for lambda calculus</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=7150"/>
		<updated>2026-04-11T16:35:57Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* De Bruijn */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Busy Beaver for lambda calculus&#039;&#039;&#039; (&#039;&#039;&#039;BBλ&#039;&#039;&#039;) is a variation of the [[Busy Beaver]] problem for [https://en.wikipedia.org/wiki/Lambda_calculus lambda calculus] invented by John Tromp. BBλ(n) = the maximum normal form size of any closed lambda term of size n (or 0 if no closed term of size n exists). Like the traditional Busy Beaver functions, it is uncomputable (and in fact grows faster than any computable function). If you are not familiar with lambda calculus and beta-reduction, it is recommended to start with that article.&lt;br /&gt;
&lt;br /&gt;
Size is measured in bits using [https://tromp.github.io/cl/Binary_lambda_calculus.html Binary Lambda Calculus] which is a binary prefix-free encoding for all closed lambda calculus terms.&lt;br /&gt;
&lt;br /&gt;
== Analogy to Turing machines ==&lt;br /&gt;
We evaluate terms by applying &#039;&#039;beta-reductions&#039;&#039; until they reach a &#039;&#039;normal form&#039;&#039;. As an analogy to [[Turing machines]]:&lt;br /&gt;
* &#039;&#039;Lambda terms&#039;&#039; are like TM configurations (tape + state + position).&lt;br /&gt;
* Applying &#039;&#039;beta-reduction&#039;&#039; to a term is like taking a TM step.&lt;br /&gt;
* A term is in &#039;&#039;normal form&#039;&#039; if no beta-reductions can be applied. This is like saying the term has halted.&lt;br /&gt;
* A term may or may not be reducible to a normal form. If it is, this is like saying the term halts.&lt;br /&gt;
* Determining whether a term is reducible to a normal form is an undecidable problem equivalent to the halting problem.&lt;br /&gt;
&lt;br /&gt;
Note: That unlike for Turing machines, evaluating lambda terms is non-deterministic. Specifically, there may be multiple beta-reductions possible in a given term. However, if a term can be reduced to a normal form, that normal form is unique. It is not possible to reduce the original term to any different normal form. A term is &#039;&#039;&#039;strongly normalizing&#039;&#039;&#039; if any choice of beta-reductions will lead to this normal form and &#039;&#039;&#039;weakly normalizing&#039;&#039;&#039; if there exist divergent reduction paths which never reach the normal form.&lt;br /&gt;
&lt;br /&gt;
== Proof of Uncomputability ==&lt;br /&gt;
The proof that BBλ(n) is uncomputable is very similar to Radó&#039;s original proof that Σ(n) is uncomputable. Proof by contradiction:&lt;br /&gt;
&lt;br /&gt;
Assume BBλ is computable and so there exists a term &#039;&#039;f&#039;&#039; which computes it on [[wikipedia:Church_encoding|Church numerals]]. In other words: for all &amp;lt;math&amp;gt;n \in \N&amp;lt;/math&amp;gt;: &amp;lt;math&amp;gt;(f \; C_n)&amp;lt;/math&amp;gt; beta reduces to normal form &amp;lt;math&amp;gt;C_{BB\lambda(n)}&amp;lt;/math&amp;gt; (where &amp;lt;math&amp;gt;C_n&amp;lt;/math&amp;gt; denotes the Church numeral &#039;&#039;n&#039;&#039;). Denote the binary lambda encoded size of &#039;&#039;f&#039;&#039; as &#039;&#039;k&#039;&#039;. Consider the term &amp;lt;math&amp;gt;f \; (C_2 \; C_n)&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;2+k+2+(5\times2+6)+(5n+6) = 5n + k + 26&amp;lt;/math&amp;gt; bits. This term reduces to &amp;lt;math&amp;gt;C_{BB\lambda(n^2)}&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6&amp;lt;/math&amp;gt; bits. But for sufficiently large n, &amp;lt;math&amp;gt;n^2 &amp;gt; 5n + k + 26&amp;lt;/math&amp;gt; and so  &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6 &amp;gt; BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;. But this is a contradiction, we&#039;ve found a &amp;lt;math&amp;gt;5n + k + 26&amp;lt;/math&amp;gt; bit term which reduces to a normal form larger than &amp;lt;math&amp;gt;BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Thus BBλ(n) is uncomputable. A variation of this argument shows that BBλ(n) eventually dominates all computable functions.&lt;br /&gt;
&lt;br /&gt;
== Binary Lambda Encoding ==&lt;br /&gt;
A lambda term using [https://en.wikipedia.org/wiki/De_Bruijn_indices De Bruijn indexes] is defined inductively as:&lt;br /&gt;
* Variables: For any &amp;lt;math&amp;gt;n \in \mathbb{Z}^+&amp;lt;/math&amp;gt;, Var(&#039;&#039;n&#039;&#039;) is a term. It represents a variable bound by the lambda expression &#039;&#039;n&#039;&#039; above this one (the De Bruijn index). It is typically written simply as &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Lambdas: For any term &#039;&#039;T&#039;&#039;, Lam(&#039;&#039;T&#039;&#039;) is a term. It represents a unary function with function body &#039;&#039;T&#039;&#039;. It is typically written &amp;lt;math&amp;gt;\lambda T&amp;lt;/math&amp;gt; or &amp;lt;code&amp;gt;\T&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Applications: For any terms &#039;&#039;T, U&#039;&#039;, App(&#039;&#039;T, U&#039;&#039;) is a term. It represents applying function &#039;&#039;T&#039;&#039; to argument &#039;&#039;U&#039;&#039;. It is typically written &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can think of this as a tree where each variable is a leaf, a lambda is a node with one child and applications are nodes with 2 children. A term is &#039;&#039;&#039;closed&#039;&#039;&#039; if every variable is bound. In other words, for every Var(&#039;&#039;n&#039;&#039;) leaf node, there exists &#039;&#039;n&#039;&#039; Lam() nodes above it in the tree of the term.&lt;br /&gt;
&lt;br /&gt;
Encoding (&#039;&#039;blc()&#039;&#039;) is defined recursively:&lt;br /&gt;
&amp;lt;math display=&amp;quot;block&amp;quot;&amp;gt;\begin{array}{l}&lt;br /&gt;
  blc(Var(n)) &amp;amp; = &amp;amp; 1^n 0 \\&lt;br /&gt;
  blc(Lam(T)) &amp;amp; = &amp;amp; 00 \; blc(T) \\&lt;br /&gt;
  blc(App(T, U)) &amp;amp; = &amp;amp; 01 \; blc(T) \; blc(U) \\&lt;br /&gt;
\end{array}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For example, the [https://en.wikipedia.org/wiki/Church_encoding#Church_numerals Church numeral] 2: &amp;lt;math&amp;gt;\lambda f x. (f \; (f \; x))&amp;lt;/math&amp;gt; =  &amp;lt;code&amp;gt;\\(2 (2 1))&amp;lt;/code&amp;gt; = &amp;lt;code&amp;gt;Lam(Lam(App(Var(2), App(Var(2), Var(1))))&amp;lt;/code&amp;gt; is encoded as &amp;lt;code&amp;gt;00 00 01 110 01 110 10&amp;lt;/code&amp;gt; or simply &amp;lt;code&amp;gt;0000011100111010&amp;lt;/code&amp;gt; (spaces are not part of the encoding, only used for demonstration purposes) and thus has size 16 bits.&lt;br /&gt;
&lt;br /&gt;
== Text Encoding conventions ==&lt;br /&gt;
For human readability, a text encoding and set of conventions is used in this article. As described earlier we encode a lambda term as:&lt;br /&gt;
* Var(&#039;&#039;n&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;&lt;br /&gt;
* Lam(&#039;&#039;T&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(\T)&amp;lt;/code&amp;gt;&lt;br /&gt;
* App(&#039;&#039;T, U&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
However, parentheses are also dropped in certain cases by convention:&lt;br /&gt;
* The outermost parentheses are dropped: &amp;lt;code&amp;gt;Lam(1)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;App(1, 2)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped immediately inside a Lam: &amp;lt;code&amp;gt;Lam(Lam(1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;Lam(App(1, 1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1 1&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped in nested Apps using left associativity: &amp;lt;code&amp;gt;App(App(1, 2), 3)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2 3&amp;lt;/code&amp;gt;. (Note: parentheses are still required for &amp;lt;code&amp;gt;App(1, App(2, 3))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 (2 3)&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
This is the convention used in John Tromp&#039;s code and so is used here for consistency.&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
There are no closed lambda terms of size 0, 1, 2, 3 or 5 and so BBλ(n) = 0 for those values.&lt;br /&gt;
&amp;lt;math&amp;gt;C(n)&amp;lt;/math&amp;gt; denotes Church numeral &#039;&#039;n&#039;&#039; = &amp;lt;math&amp;gt;\lambda f\lambda x. f^n(x)&amp;lt;/math&amp;gt;.&lt;br /&gt;
In the last column, JT and BF abbreviate John Tromp and Bertram Felgenhauer.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!BBλ(n)&lt;br /&gt;
!Champion&lt;br /&gt;
!Normal form&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|4 || = 4 || &amp;lt;math&amp;gt;\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|6 || = 6 || &amp;lt;math&amp;gt;\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|7 || = 7 || &amp;lt;math&amp;gt;\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|8 || = 8 || &amp;lt;math&amp;gt;\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|9 || = 9 || &amp;lt;math&amp;gt;\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|10 || = 10 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|11 || = 11 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|12 || = 12 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|13 || = 13 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|14 || = 14 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|15 || = 15 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|16 || = 16 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|17 || = 17 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|18 || = 18 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|19 || = 19 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|20 || = 20 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|21 || = 22 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (1 (\lambda 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(1(\lambda 2))(1(\lambda 2))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|22 || = 24 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1 1) (1 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(1 1) (1 1) (1 1)&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|23 || = 26 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (1 (\lambda\lambda 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(1 (\lambda\lambda 2)) (1 (\lambda\lambda 2))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|24 || = 30 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1 1) (1 (\lambda 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(1 (\lambda 1)) (1 (\lambda 1)) (1 (\lambda 1))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|25 || = 42 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda 1 (\lambda 1 (2 1)) (1 (1 (\lambda 1 (2 1))))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|26 || = 52 || &amp;lt;math&amp;gt;(\lambda 1 1) (\lambda\lambda 2 (1 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda\lambda 2 (\lambda\lambda 2 (1 2)) (1 (2 (\lambda\lambda 2 (1 2))))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|27 || = 44 || &amp;lt;math&amp;gt;\lambda\lambda(\lambda 1 1) (\lambda 1 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda\lambda 1 (\lambda 1 (2 1)) (1 (1 (\lambda 1 (2 1))))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|28 || = 58 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (2 (\lambda 2))))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda 1 (\lambda\lambda 1 (3 (\lambda 2))) (1 (\lambda 2 (\lambda\lambda 1 (4 (\lambda 2)))))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
| 29 || = 223|| &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (1 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda B (B (1 B)) \text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;B = (A (A (1 A)))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;A = (1 (\lambda 1 (1 (2 1))))&amp;lt;/math&amp;gt;&lt;br /&gt;
||JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|30&lt;br /&gt;
|= 160&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 1) (\lambda\lambda 2 (1 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;math&amp;gt;\lambda\lambda 2 B A (1 (2 B A)) \text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;B = (\lambda\lambda 2 A (1 (2 A)))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;A = (\lambda\lambda 2 (1 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|31&lt;br /&gt;
|= 267&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1) (\lambda\lambda 2 (2 (1 2)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;math&amp;gt;\lambda\lambda 2 A (2 A (C (2 A))) \text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;C = (2 A (2 A (1 B (2 A))))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;B = (\lambda 3 A (3 A (1 (3 A))))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;A = (\lambda\lambda 2 (2 (1 2)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|32&lt;br /&gt;
|= 298&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (1 (2 (\lambda 2))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|33&lt;br /&gt;
|= 1812&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (1 (1 (2 1))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;math&amp;gt;\lambda C (C (C (1 C))) \text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;C = (B (B (B (1 B)))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;B = (A (A (A (1 A)))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;A = (1 (\lambda 1 (1 (1 (2 1)))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|34 || &amp;lt;math&amp;gt;= 327\,686&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^2}})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|35 || &amp;lt;math&amp;gt;= 5 \cdot 3^{3^3} + 6&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; &amp;gt; 3.8 \times 10^{13}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^3})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|36 || &amp;lt;math&amp;gt;= 5 \cdot 2^{2^{2^3}} + 6&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; &amp;gt; 5.7 \times 10^{77}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1) (\lambda 1 (1 (\lambda\lambda 2 (2 1))))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^3}})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|37 || &amp;lt;math&amp;gt; = 2 + BB\lambda(35)&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;math&amp;gt;\lambda(\lambda 1 1 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x. C(3^{3^3})&amp;lt;/math&amp;gt;||mxdys &amp;amp; JT &amp;amp; dyuan &amp;amp; sligocki&lt;br /&gt;
|-&lt;br /&gt;
|38 || &amp;lt;math&amp;gt;\ge 10^{10^4}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^{2^2}}})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|39 || &amp;lt;math&amp;gt;\ge 10^{10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^{3^3}})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|40 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)\text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;T(0)=x&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{15} 33&amp;lt;/math&amp;gt;&lt;br /&gt;
|| mxdys &amp;amp; racheline&lt;br /&gt;
|-&lt;br /&gt;
|41 || &amp;lt;math&amp;gt;\ge 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;math&amp;gt;(\lambda 1 (\lambda 1 1) 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^{85}})&amp;lt;/math&amp;gt;||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|42 ||&amp;lt;math&amp;gt; \ge 2 + BB\lambda(40)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda(\lambda 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|43 ||&amp;lt;math&amp;gt; &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1) (\lambda 1 (\lambda 1 (\lambda\lambda 2 (2 1)) 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)\text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;T(0)=x&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;T(n+1)=T(n)\;(\lambda y.y\;C(2)\;T(n))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;k &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;&lt;br /&gt;
||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|44 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)\text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;T(0)=x&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|45 || &amp;lt;math&amp;gt; \ge 2 + BB\lambda(43)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (\lambda 1 (\lambda\lambda 2 (2 1)) 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|46 || &amp;lt;math&amp;gt; \ge 2 + BB\lambda(44)&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;math&amp;gt;\lambda(\lambda 1 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|47 || &amp;lt;math&amp;gt;&amp;gt; f_{\omega}\left(f_{5}\left(2\right)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;math&amp;gt;(\lambda 1 1 1)(\lambda\lambda 1 (1 2) (\lambda\lambda 2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| ||50_ft_lock&lt;br /&gt;
|-&lt;br /&gt;
|48 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow\uparrow 4&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right)&amp;lt;/math&amp;gt; &amp;gt; Graham&#039;s number&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1) (\lambda 1 (1 (\lambda\lambda 1 2 (\lambda\lambda 2 (2 1)))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;C(f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right) )&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|61&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{2 \uparrow\uparrow 18-1}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 1) (\lambda 1 (1 (\lambda\lambda\lambda 1 3 2 (\lambda\lambda 2 (2 1)))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;C(f_{\omega^{2 \uparrow\uparrow 18-1}}\left(2\right) )&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://tromp.github.io/blog/2026/01/28/largest-number-revised 50_ft_lock]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|86&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{\omega^{2}}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|90&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\zeta_0}\left(15\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|94&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(12\right)&amp;lt;/math&amp;gt; &amp;gt; TREE(G64)&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-&lt;br /&gt;
|95&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(23\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-&lt;br /&gt;
|96&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(f_{\omega^{\omega^{2}}}\left(2\right)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 (\lambda 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-||||||-&lt;br /&gt;
|100&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)+1}\left(4\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 (\lambda 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-||||||-&lt;br /&gt;
|201&lt;br /&gt;
| &amp;gt; q(5)&lt;br /&gt;
|too large to show&lt;br /&gt;
|&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/laver.lam JT &amp;amp; BF &amp;amp; 50_ft_lock]&lt;br /&gt;
|-||||||-&lt;br /&gt;
|331&lt;br /&gt;
| lim(BMS)&lt;br /&gt;
|too large to show&lt;br /&gt;
|&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/bms.lam Patcail &amp;amp; JT &amp;amp; 50_ft_lock]&lt;br /&gt;
|-||||||-&lt;br /&gt;
|1850&lt;br /&gt;
|&amp;gt; Loader&#039;s number&lt;br /&gt;
|too large to show&lt;br /&gt;
|&lt;br /&gt;
|[https://codegolf.stackexchange.com/questions/176966/golf-a-number-bigger-than-loaders-number/274634#274634 JT]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Oracle Busy Beaver ==&lt;br /&gt;
While BBλ grows uncomputably fast, one can define functions that grow much faster.&lt;br /&gt;
&lt;br /&gt;
Let&#039;s define a higher order busy beaver function BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; by providing oracle access to BBλ.&lt;br /&gt;
&lt;br /&gt;
This is done by enriching the set of terms and possible reduction steps considered in the BB definition.&lt;br /&gt;
&lt;br /&gt;
A 1-closed term is a term in de Bruijn notation that is closed with 1 additional lambda in front. Any variable bound to that lambda is a free variable &#039;&#039;&#039;f&#039;&#039;&#039; in the term.&lt;br /&gt;
&lt;br /&gt;
An oracle reduction step reduces &#039;&#039;&#039;f&#039;&#039;&#039; t, where t is a closed normal form of size s, to Church numeral BBλ(s).&lt;br /&gt;
&lt;br /&gt;
Note that this is almost identical to the oracle steps in Barendregt and Klop&#039;s &amp;quot;Applications of infinitary lambda calculus&amp;quot;, except that they require t itself to be a church numeral. Allowing arbitrary closed t makes oracle steps more widely applicable while aligning with BBλ&#039;s focus on term sizes.&lt;br /&gt;
&lt;br /&gt;
Now let BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; be the maximum beta/oracle normal form size of any 1-closed lambda term of size n, or 0 if no 1-closed term of size n exists. This appears as sequence [[oeis:A385712|A385712]]  in the OEIS.&lt;br /&gt;
&lt;br /&gt;
The following table shows values of BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; up to 22 plus a lower bound for 28, with larger values expressed in terms of function &amp;lt;math&amp;gt;f(n) = 6 + 5 \times BB \lambda(n)&amp;lt;/math&amp;gt;: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!champion&lt;br /&gt;
!BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;math&amp;gt;1&amp;lt;/math&amp;gt;&lt;br /&gt;
|1&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
|5&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda \lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda \lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
|7&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(4) = 26&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda \lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
|9&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(6) = 36&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(7) = 41&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(4) = 266&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(9) = 51&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda \lambda 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(6) = f(36) = 25 \times 2^{2^{2^{3}}}+36 &amp;gt; 2.85 \times 10^{78}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda \lambda 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(7) = f(41) \geq 25 \times 3^{3^{85}}+36 &amp;gt; 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (1 (\lambda 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{3}(4) = f(266)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda \lambda \lambda 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^2(9) = f(51)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda 1) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^4(4) &amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|19&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (1 (\lambda \lambda 2)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^3(7)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 1) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^6(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 2) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^7(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda 1)) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{52}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda 1) 1 (\lambda 1) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge f^{BB \lambda(f^3(4))}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|29&lt;br /&gt;
|&amp;lt;math&amp;gt;1(\lambda 1)(\lambda 1 2 1)(\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge f^{BB \lambda(f^{BB \lambda(f^4(4))+4}(4))+BB \lambda(f^4(4))+5}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
We can generalize BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; to BBλ&amp;lt;sub&amp;gt;α&amp;lt;/sub&amp;gt; for ordinals α by using oracle function BBλ&amp;lt;sub&amp;gt;α-1&amp;lt;/sub&amp;gt; for successor ordinal a, and oracle function (\n -&amp;gt; BBλ&amp;lt;sub&amp;gt;α[n]&amp;lt;/sub&amp;gt;(n)) for limit ordinal α, assuming well-defined fundamental sequences up to α. Because of limited oracle inputs, all oracle busy beavers have identical values up to n=11.&lt;br /&gt;
&lt;br /&gt;
== De Bruijn ==&lt;br /&gt;
We can use De Bruijn index instead of binary to evaluate lambda calculus size. To get the size of an expression, convert it into De Bruijn index then count the number of lambdas / backslashes and numbers. By example, &amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;  is size 8 because it has 3 backslashes and 5 numbers.&lt;br /&gt;
&lt;br /&gt;
For n &amp;lt; 7, BBλ_db(n) = n is trivial and can be achieved via picking any size n term already in normal form, like BBλ(m) for m ≤ 20.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!BBλ_db(n)&lt;br /&gt;
!Value&lt;br /&gt;
!Champion&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|≥ 7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|≥ 16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[User:Azerty|Azerty]] &amp;amp; John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|≥ 68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge 3 \uparrow\uparrow 3 + 3 &amp;gt; 7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge 3 \uparrow\uparrow 4 + 3 &amp;gt; 10^{10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys and racheline&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega}\left(f_{5}\left(2\right)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\1 (1 2) (\\2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|50_ft_lock&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}(2 \uparrow\uparrow 6)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^\omega}(2 \uparrow\uparrow 18)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (1 (\\\1 3 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://tromp.github.io/blog/2026/01/28/largest-number-revised 50_ft_lock]&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{\omega+2}}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\zeta_0}(15)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}(12)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}(f_{\omega^{\omega+2}}(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega+1)}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* https://oeis.org/A333479&lt;br /&gt;
* [https://tromp.github.io/blog/2026/01/28/largest-number-revised The largest number representable in 64 bits]. 28 Jan 2026. John Tromp.&lt;br /&gt;
* [https://gist.github.com/tromp/86b3184f852f65bfb814e3ab0987d861 Binary Lambda Calculus]. John Tromp.&lt;br /&gt;
* https://github.com/tromp/AIT/tree/master/BB&lt;br /&gt;
[[category:Functions]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=7149</id>
		<title>Busy Beaver for lambda calculus</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=7149"/>
		<updated>2026-04-11T16:35:15Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* De Bruijn */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Busy Beaver for lambda calculus&#039;&#039;&#039; (&#039;&#039;&#039;BBλ&#039;&#039;&#039;) is a variation of the [[Busy Beaver]] problem for [https://en.wikipedia.org/wiki/Lambda_calculus lambda calculus] invented by John Tromp. BBλ(n) = the maximum normal form size of any closed lambda term of size n (or 0 if no closed term of size n exists). Like the traditional Busy Beaver functions, it is uncomputable (and in fact grows faster than any computable function). If you are not familiar with lambda calculus and beta-reduction, it is recommended to start with that article.&lt;br /&gt;
&lt;br /&gt;
Size is measured in bits using [https://tromp.github.io/cl/Binary_lambda_calculus.html Binary Lambda Calculus] which is a binary prefix-free encoding for all closed lambda calculus terms.&lt;br /&gt;
&lt;br /&gt;
== Analogy to Turing machines ==&lt;br /&gt;
We evaluate terms by applying &#039;&#039;beta-reductions&#039;&#039; until they reach a &#039;&#039;normal form&#039;&#039;. As an analogy to [[Turing machines]]:&lt;br /&gt;
* &#039;&#039;Lambda terms&#039;&#039; are like TM configurations (tape + state + position).&lt;br /&gt;
* Applying &#039;&#039;beta-reduction&#039;&#039; to a term is like taking a TM step.&lt;br /&gt;
* A term is in &#039;&#039;normal form&#039;&#039; if no beta-reductions can be applied. This is like saying the term has halted.&lt;br /&gt;
* A term may or may not be reducible to a normal form. If it is, this is like saying the term halts.&lt;br /&gt;
* Determining whether a term is reducible to a normal form is an undecidable problem equivalent to the halting problem.&lt;br /&gt;
&lt;br /&gt;
Note: That unlike for Turing machines, evaluating lambda terms is non-deterministic. Specifically, there may be multiple beta-reductions possible in a given term. However, if a term can be reduced to a normal form, that normal form is unique. It is not possible to reduce the original term to any different normal form. A term is &#039;&#039;&#039;strongly normalizing&#039;&#039;&#039; if any choice of beta-reductions will lead to this normal form and &#039;&#039;&#039;weakly normalizing&#039;&#039;&#039; if there exist divergent reduction paths which never reach the normal form.&lt;br /&gt;
&lt;br /&gt;
== Proof of Uncomputability ==&lt;br /&gt;
The proof that BBλ(n) is uncomputable is very similar to Radó&#039;s original proof that Σ(n) is uncomputable. Proof by contradiction:&lt;br /&gt;
&lt;br /&gt;
Assume BBλ is computable and so there exists a term &#039;&#039;f&#039;&#039; which computes it on [[wikipedia:Church_encoding|Church numerals]]. In other words: for all &amp;lt;math&amp;gt;n \in \N&amp;lt;/math&amp;gt;: &amp;lt;math&amp;gt;(f \; C_n)&amp;lt;/math&amp;gt; beta reduces to normal form &amp;lt;math&amp;gt;C_{BB\lambda(n)}&amp;lt;/math&amp;gt; (where &amp;lt;math&amp;gt;C_n&amp;lt;/math&amp;gt; denotes the Church numeral &#039;&#039;n&#039;&#039;). Denote the binary lambda encoded size of &#039;&#039;f&#039;&#039; as &#039;&#039;k&#039;&#039;. Consider the term &amp;lt;math&amp;gt;f \; (C_2 \; C_n)&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;2+k+2+(5\times2+6)+(5n+6) = 5n + k + 26&amp;lt;/math&amp;gt; bits. This term reduces to &amp;lt;math&amp;gt;C_{BB\lambda(n^2)}&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6&amp;lt;/math&amp;gt; bits. But for sufficiently large n, &amp;lt;math&amp;gt;n^2 &amp;gt; 5n + k + 26&amp;lt;/math&amp;gt; and so  &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6 &amp;gt; BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;. But this is a contradiction, we&#039;ve found a &amp;lt;math&amp;gt;5n + k + 26&amp;lt;/math&amp;gt; bit term which reduces to a normal form larger than &amp;lt;math&amp;gt;BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Thus BBλ(n) is uncomputable. A variation of this argument shows that BBλ(n) eventually dominates all computable functions.&lt;br /&gt;
&lt;br /&gt;
== Binary Lambda Encoding ==&lt;br /&gt;
A lambda term using [https://en.wikipedia.org/wiki/De_Bruijn_indices De Bruijn indexes] is defined inductively as:&lt;br /&gt;
* Variables: For any &amp;lt;math&amp;gt;n \in \mathbb{Z}^+&amp;lt;/math&amp;gt;, Var(&#039;&#039;n&#039;&#039;) is a term. It represents a variable bound by the lambda expression &#039;&#039;n&#039;&#039; above this one (the De Bruijn index). It is typically written simply as &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Lambdas: For any term &#039;&#039;T&#039;&#039;, Lam(&#039;&#039;T&#039;&#039;) is a term. It represents a unary function with function body &#039;&#039;T&#039;&#039;. It is typically written &amp;lt;math&amp;gt;\lambda T&amp;lt;/math&amp;gt; or &amp;lt;code&amp;gt;\T&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Applications: For any terms &#039;&#039;T, U&#039;&#039;, App(&#039;&#039;T, U&#039;&#039;) is a term. It represents applying function &#039;&#039;T&#039;&#039; to argument &#039;&#039;U&#039;&#039;. It is typically written &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can think of this as a tree where each variable is a leaf, a lambda is a node with one child and applications are nodes with 2 children. A term is &#039;&#039;&#039;closed&#039;&#039;&#039; if every variable is bound. In other words, for every Var(&#039;&#039;n&#039;&#039;) leaf node, there exists &#039;&#039;n&#039;&#039; Lam() nodes above it in the tree of the term.&lt;br /&gt;
&lt;br /&gt;
Encoding (&#039;&#039;blc()&#039;&#039;) is defined recursively:&lt;br /&gt;
&amp;lt;math display=&amp;quot;block&amp;quot;&amp;gt;\begin{array}{l}&lt;br /&gt;
  blc(Var(n)) &amp;amp; = &amp;amp; 1^n 0 \\&lt;br /&gt;
  blc(Lam(T)) &amp;amp; = &amp;amp; 00 \; blc(T) \\&lt;br /&gt;
  blc(App(T, U)) &amp;amp; = &amp;amp; 01 \; blc(T) \; blc(U) \\&lt;br /&gt;
\end{array}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For example, the [https://en.wikipedia.org/wiki/Church_encoding#Church_numerals Church numeral] 2: &amp;lt;math&amp;gt;\lambda f x. (f \; (f \; x))&amp;lt;/math&amp;gt; =  &amp;lt;code&amp;gt;\\(2 (2 1))&amp;lt;/code&amp;gt; = &amp;lt;code&amp;gt;Lam(Lam(App(Var(2), App(Var(2), Var(1))))&amp;lt;/code&amp;gt; is encoded as &amp;lt;code&amp;gt;00 00 01 110 01 110 10&amp;lt;/code&amp;gt; or simply &amp;lt;code&amp;gt;0000011100111010&amp;lt;/code&amp;gt; (spaces are not part of the encoding, only used for demonstration purposes) and thus has size 16 bits.&lt;br /&gt;
&lt;br /&gt;
== Text Encoding conventions ==&lt;br /&gt;
For human readability, a text encoding and set of conventions is used in this article. As described earlier we encode a lambda term as:&lt;br /&gt;
* Var(&#039;&#039;n&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;&lt;br /&gt;
* Lam(&#039;&#039;T&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(\T)&amp;lt;/code&amp;gt;&lt;br /&gt;
* App(&#039;&#039;T, U&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
However, parentheses are also dropped in certain cases by convention:&lt;br /&gt;
* The outermost parentheses are dropped: &amp;lt;code&amp;gt;Lam(1)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;App(1, 2)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped immediately inside a Lam: &amp;lt;code&amp;gt;Lam(Lam(1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;Lam(App(1, 1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1 1&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped in nested Apps using left associativity: &amp;lt;code&amp;gt;App(App(1, 2), 3)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2 3&amp;lt;/code&amp;gt;. (Note: parentheses are still required for &amp;lt;code&amp;gt;App(1, App(2, 3))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 (2 3)&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
This is the convention used in John Tromp&#039;s code and so is used here for consistency.&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
There are no closed lambda terms of size 0, 1, 2, 3 or 5 and so BBλ(n) = 0 for those values.&lt;br /&gt;
&amp;lt;math&amp;gt;C(n)&amp;lt;/math&amp;gt; denotes Church numeral &#039;&#039;n&#039;&#039; = &amp;lt;math&amp;gt;\lambda f\lambda x. f^n(x)&amp;lt;/math&amp;gt;.&lt;br /&gt;
In the last column, JT and BF abbreviate John Tromp and Bertram Felgenhauer.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!BBλ(n)&lt;br /&gt;
!Champion&lt;br /&gt;
!Normal form&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|4 || = 4 || &amp;lt;math&amp;gt;\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|6 || = 6 || &amp;lt;math&amp;gt;\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|7 || = 7 || &amp;lt;math&amp;gt;\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|8 || = 8 || &amp;lt;math&amp;gt;\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|9 || = 9 || &amp;lt;math&amp;gt;\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|10 || = 10 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|11 || = 11 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|12 || = 12 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|13 || = 13 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|14 || = 14 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|15 || = 15 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|16 || = 16 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|17 || = 17 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|18 || = 18 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|19 || = 19 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|20 || = 20 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|21 || = 22 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (1 (\lambda 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(1(\lambda 2))(1(\lambda 2))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|22 || = 24 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1 1) (1 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(1 1) (1 1) (1 1)&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|23 || = 26 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (1 (\lambda\lambda 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(1 (\lambda\lambda 2)) (1 (\lambda\lambda 2))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|24 || = 30 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1 1) (1 (\lambda 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(1 (\lambda 1)) (1 (\lambda 1)) (1 (\lambda 1))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|25 || = 42 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda 1 (\lambda 1 (2 1)) (1 (1 (\lambda 1 (2 1))))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|26 || = 52 || &amp;lt;math&amp;gt;(\lambda 1 1) (\lambda\lambda 2 (1 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda\lambda 2 (\lambda\lambda 2 (1 2)) (1 (2 (\lambda\lambda 2 (1 2))))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|27 || = 44 || &amp;lt;math&amp;gt;\lambda\lambda(\lambda 1 1) (\lambda 1 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda\lambda 1 (\lambda 1 (2 1)) (1 (1 (\lambda 1 (2 1))))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|28 || = 58 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (2 (\lambda 2))))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda 1 (\lambda\lambda 1 (3 (\lambda 2))) (1 (\lambda 2 (\lambda\lambda 1 (4 (\lambda 2)))))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
| 29 || = 223|| &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (1 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda B (B (1 B)) \text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;B = (A (A (1 A)))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;A = (1 (\lambda 1 (1 (2 1))))&amp;lt;/math&amp;gt;&lt;br /&gt;
||JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|30&lt;br /&gt;
|= 160&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 1) (\lambda\lambda 2 (1 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;math&amp;gt;\lambda\lambda 2 B A (1 (2 B A)) \text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;B = (\lambda\lambda 2 A (1 (2 A)))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;A = (\lambda\lambda 2 (1 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|31&lt;br /&gt;
|= 267&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1) (\lambda\lambda 2 (2 (1 2)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;math&amp;gt;\lambda\lambda 2 A (2 A (C (2 A))) \text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;C = (2 A (2 A (1 B (2 A))))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;B = (\lambda 3 A (3 A (1 (3 A))))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;A = (\lambda\lambda 2 (2 (1 2)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|32&lt;br /&gt;
|= 298&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (1 (2 (\lambda 2))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|33&lt;br /&gt;
|= 1812&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (1 (1 (2 1))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;math&amp;gt;\lambda C (C (C (1 C))) \text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;C = (B (B (B (1 B)))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;B = (A (A (A (1 A)))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;A = (1 (\lambda 1 (1 (1 (2 1)))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|34 || &amp;lt;math&amp;gt;= 327\,686&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^2}})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|35 || &amp;lt;math&amp;gt;= 5 \cdot 3^{3^3} + 6&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; &amp;gt; 3.8 \times 10^{13}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^3})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|36 || &amp;lt;math&amp;gt;= 5 \cdot 2^{2^{2^3}} + 6&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; &amp;gt; 5.7 \times 10^{77}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1) (\lambda 1 (1 (\lambda\lambda 2 (2 1))))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^3}})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|37 || &amp;lt;math&amp;gt; = 2 + BB\lambda(35)&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;math&amp;gt;\lambda(\lambda 1 1 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x. C(3^{3^3})&amp;lt;/math&amp;gt;||mxdys &amp;amp; JT &amp;amp; dyuan &amp;amp; sligocki&lt;br /&gt;
|-&lt;br /&gt;
|38 || &amp;lt;math&amp;gt;\ge 10^{10^4}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^{2^2}}})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|39 || &amp;lt;math&amp;gt;\ge 10^{10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^{3^3}})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|40 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)\text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;T(0)=x&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{15} 33&amp;lt;/math&amp;gt;&lt;br /&gt;
|| mxdys &amp;amp; racheline&lt;br /&gt;
|-&lt;br /&gt;
|41 || &amp;lt;math&amp;gt;\ge 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;math&amp;gt;(\lambda 1 (\lambda 1 1) 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^{85}})&amp;lt;/math&amp;gt;||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|42 ||&amp;lt;math&amp;gt; \ge 2 + BB\lambda(40)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda(\lambda 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|43 ||&amp;lt;math&amp;gt; &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1) (\lambda 1 (\lambda 1 (\lambda\lambda 2 (2 1)) 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)\text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;T(0)=x&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;T(n+1)=T(n)\;(\lambda y.y\;C(2)\;T(n))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;k &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;&lt;br /&gt;
||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|44 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)\text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;T(0)=x&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|45 || &amp;lt;math&amp;gt; \ge 2 + BB\lambda(43)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (\lambda 1 (\lambda\lambda 2 (2 1)) 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|46 || &amp;lt;math&amp;gt; \ge 2 + BB\lambda(44)&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;math&amp;gt;\lambda(\lambda 1 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|47 || &amp;lt;math&amp;gt;&amp;gt; f_{\omega}\left(f_{5}\left(2\right)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;math&amp;gt;(\lambda 1 1 1)(\lambda\lambda 1 (1 2) (\lambda\lambda 2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| ||50_ft_lock&lt;br /&gt;
|-&lt;br /&gt;
|48 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow\uparrow 4&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right)&amp;lt;/math&amp;gt; &amp;gt; Graham&#039;s number&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1) (\lambda 1 (1 (\lambda\lambda 1 2 (\lambda\lambda 2 (2 1)))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;C(f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right) )&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|61&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{2 \uparrow\uparrow 18-1}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 1) (\lambda 1 (1 (\lambda\lambda\lambda 1 3 2 (\lambda\lambda 2 (2 1)))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;C(f_{\omega^{2 \uparrow\uparrow 18-1}}\left(2\right) )&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://tromp.github.io/blog/2026/01/28/largest-number-revised 50_ft_lock]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|86&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{\omega^{2}}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|90&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\zeta_0}\left(15\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|94&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(12\right)&amp;lt;/math&amp;gt; &amp;gt; TREE(G64)&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-&lt;br /&gt;
|95&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(23\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-&lt;br /&gt;
|96&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(f_{\omega^{\omega^{2}}}\left(2\right)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 (\lambda 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-||||||-&lt;br /&gt;
|100&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)+1}\left(4\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 (\lambda 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-||||||-&lt;br /&gt;
|201&lt;br /&gt;
| &amp;gt; q(5)&lt;br /&gt;
|too large to show&lt;br /&gt;
|&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/laver.lam JT &amp;amp; BF &amp;amp; 50_ft_lock]&lt;br /&gt;
|-||||||-&lt;br /&gt;
|331&lt;br /&gt;
| lim(BMS)&lt;br /&gt;
|too large to show&lt;br /&gt;
|&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/bms.lam Patcail &amp;amp; JT &amp;amp; 50_ft_lock]&lt;br /&gt;
|-||||||-&lt;br /&gt;
|1850&lt;br /&gt;
|&amp;gt; Loader&#039;s number&lt;br /&gt;
|too large to show&lt;br /&gt;
|&lt;br /&gt;
|[https://codegolf.stackexchange.com/questions/176966/golf-a-number-bigger-than-loaders-number/274634#274634 JT]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Oracle Busy Beaver ==&lt;br /&gt;
While BBλ grows uncomputably fast, one can define functions that grow much faster.&lt;br /&gt;
&lt;br /&gt;
Let&#039;s define a higher order busy beaver function BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; by providing oracle access to BBλ.&lt;br /&gt;
&lt;br /&gt;
This is done by enriching the set of terms and possible reduction steps considered in the BB definition.&lt;br /&gt;
&lt;br /&gt;
A 1-closed term is a term in de Bruijn notation that is closed with 1 additional lambda in front. Any variable bound to that lambda is a free variable &#039;&#039;&#039;f&#039;&#039;&#039; in the term.&lt;br /&gt;
&lt;br /&gt;
An oracle reduction step reduces &#039;&#039;&#039;f&#039;&#039;&#039; t, where t is a closed normal form of size s, to Church numeral BBλ(s).&lt;br /&gt;
&lt;br /&gt;
Note that this is almost identical to the oracle steps in Barendregt and Klop&#039;s &amp;quot;Applications of infinitary lambda calculus&amp;quot;, except that they require t itself to be a church numeral. Allowing arbitrary closed t makes oracle steps more widely applicable while aligning with BBλ&#039;s focus on term sizes.&lt;br /&gt;
&lt;br /&gt;
Now let BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; be the maximum beta/oracle normal form size of any 1-closed lambda term of size n, or 0 if no 1-closed term of size n exists. This appears as sequence [[oeis:A385712|A385712]]  in the OEIS.&lt;br /&gt;
&lt;br /&gt;
The following table shows values of BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; up to 22 plus a lower bound for 28, with larger values expressed in terms of function &amp;lt;math&amp;gt;f(n) = 6 + 5 \times BB \lambda(n)&amp;lt;/math&amp;gt;: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!champion&lt;br /&gt;
!BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;math&amp;gt;1&amp;lt;/math&amp;gt;&lt;br /&gt;
|1&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
|5&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda \lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda \lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
|7&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(4) = 26&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda \lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
|9&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(6) = 36&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(7) = 41&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(4) = 266&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(9) = 51&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda \lambda 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(6) = f(36) = 25 \times 2^{2^{2^{3}}}+36 &amp;gt; 2.85 \times 10^{78}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda \lambda 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(7) = f(41) \geq 25 \times 3^{3^{85}}+36 &amp;gt; 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (1 (\lambda 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{3}(4) = f(266)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda \lambda \lambda 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^2(9) = f(51)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda 1) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^4(4) &amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|19&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (1 (\lambda \lambda 2)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^3(7)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 1) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^6(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 2) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^7(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda 1)) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{52}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda 1) 1 (\lambda 1) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge f^{BB \lambda(f^3(4))}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|29&lt;br /&gt;
|&amp;lt;math&amp;gt;1(\lambda 1)(\lambda 1 2 1)(\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge f^{BB \lambda(f^{BB \lambda(f^4(4))+4}(4))+BB \lambda(f^4(4))+5}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
We can generalize BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; to BBλ&amp;lt;sub&amp;gt;α&amp;lt;/sub&amp;gt; for ordinals α by using oracle function BBλ&amp;lt;sub&amp;gt;α-1&amp;lt;/sub&amp;gt; for successor ordinal a, and oracle function (\n -&amp;gt; BBλ&amp;lt;sub&amp;gt;α[n]&amp;lt;/sub&amp;gt;(n)) for limit ordinal α, assuming well-defined fundamental sequences up to α. Because of limited oracle inputs, all oracle busy beavers have identical values up to n=11.&lt;br /&gt;
&lt;br /&gt;
== De Bruijn ==&lt;br /&gt;
We can use De Bruijn index instead of binary to evaluate lambda calculus size. To get the size of an expression, convert it into De Bruijn index then count the number of lambdas / backslashes and numbers. By example, &amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;  is size 8 because it has 3 backslashes and 5 numbers.&lt;br /&gt;
&lt;br /&gt;
For n &amp;lt; 7, BBλ_db(n) = n is trivial and can be achieved via picking any size n term already in normal form, like BBλ(m) for m ≤ 20.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; mw-collapsible&lt;br /&gt;
!BBλ_db(n)&lt;br /&gt;
!Value&lt;br /&gt;
!Champion&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|≥ 7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|≥ 16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[User:Azerty|Azerty]] &amp;amp; John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|≥ 68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge 3 \uparrow\uparrow 3 + 3 &amp;gt; 7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge 3 \uparrow\uparrow 4 + 3 &amp;gt; 10^{10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys and racheline&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega}\left(f_{5}\left(2\right)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\1 (1 2) (\\2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|50_ft_lock&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}(2 \uparrow\uparrow 6)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^\omega}(2 \uparrow\uparrow 18)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (1 (\\\1 3 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://tromp.github.io/blog/2026/01/28/largest-number-revised 50_ft_lock]&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{\omega+2}}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\zeta_0}(15)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}(12)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}(f_{\omega^{\omega+2}}(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega+1)}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* https://oeis.org/A333479&lt;br /&gt;
* [https://tromp.github.io/blog/2026/01/28/largest-number-revised The largest number representable in 64 bits]. 28 Jan 2026. John Tromp.&lt;br /&gt;
* [https://gist.github.com/tromp/86b3184f852f65bfb814e3ab0987d861 Binary Lambda Calculus]. John Tromp.&lt;br /&gt;
* https://github.com/tromp/AIT/tree/master/BB&lt;br /&gt;
[[category:Functions]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=7148</id>
		<title>Busy Beaver for lambda calculus</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=7148"/>
		<updated>2026-04-11T16:34:16Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* De Bruijn */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Busy Beaver for lambda calculus&#039;&#039;&#039; (&#039;&#039;&#039;BBλ&#039;&#039;&#039;) is a variation of the [[Busy Beaver]] problem for [https://en.wikipedia.org/wiki/Lambda_calculus lambda calculus] invented by John Tromp. BBλ(n) = the maximum normal form size of any closed lambda term of size n (or 0 if no closed term of size n exists). Like the traditional Busy Beaver functions, it is uncomputable (and in fact grows faster than any computable function). If you are not familiar with lambda calculus and beta-reduction, it is recommended to start with that article.&lt;br /&gt;
&lt;br /&gt;
Size is measured in bits using [https://tromp.github.io/cl/Binary_lambda_calculus.html Binary Lambda Calculus] which is a binary prefix-free encoding for all closed lambda calculus terms.&lt;br /&gt;
&lt;br /&gt;
== Analogy to Turing machines ==&lt;br /&gt;
We evaluate terms by applying &#039;&#039;beta-reductions&#039;&#039; until they reach a &#039;&#039;normal form&#039;&#039;. As an analogy to [[Turing machines]]:&lt;br /&gt;
* &#039;&#039;Lambda terms&#039;&#039; are like TM configurations (tape + state + position).&lt;br /&gt;
* Applying &#039;&#039;beta-reduction&#039;&#039; to a term is like taking a TM step.&lt;br /&gt;
* A term is in &#039;&#039;normal form&#039;&#039; if no beta-reductions can be applied. This is like saying the term has halted.&lt;br /&gt;
* A term may or may not be reducible to a normal form. If it is, this is like saying the term halts.&lt;br /&gt;
* Determining whether a term is reducible to a normal form is an undecidable problem equivalent to the halting problem.&lt;br /&gt;
&lt;br /&gt;
Note: That unlike for Turing machines, evaluating lambda terms is non-deterministic. Specifically, there may be multiple beta-reductions possible in a given term. However, if a term can be reduced to a normal form, that normal form is unique. It is not possible to reduce the original term to any different normal form. A term is &#039;&#039;&#039;strongly normalizing&#039;&#039;&#039; if any choice of beta-reductions will lead to this normal form and &#039;&#039;&#039;weakly normalizing&#039;&#039;&#039; if there exist divergent reduction paths which never reach the normal form.&lt;br /&gt;
&lt;br /&gt;
== Proof of Uncomputability ==&lt;br /&gt;
The proof that BBλ(n) is uncomputable is very similar to Radó&#039;s original proof that Σ(n) is uncomputable. Proof by contradiction:&lt;br /&gt;
&lt;br /&gt;
Assume BBλ is computable and so there exists a term &#039;&#039;f&#039;&#039; which computes it on [[wikipedia:Church_encoding|Church numerals]]. In other words: for all &amp;lt;math&amp;gt;n \in \N&amp;lt;/math&amp;gt;: &amp;lt;math&amp;gt;(f \; C_n)&amp;lt;/math&amp;gt; beta reduces to normal form &amp;lt;math&amp;gt;C_{BB\lambda(n)}&amp;lt;/math&amp;gt; (where &amp;lt;math&amp;gt;C_n&amp;lt;/math&amp;gt; denotes the Church numeral &#039;&#039;n&#039;&#039;). Denote the binary lambda encoded size of &#039;&#039;f&#039;&#039; as &#039;&#039;k&#039;&#039;. Consider the term &amp;lt;math&amp;gt;f \; (C_2 \; C_n)&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;2+k+2+(5\times2+6)+(5n+6) = 5n + k + 26&amp;lt;/math&amp;gt; bits. This term reduces to &amp;lt;math&amp;gt;C_{BB\lambda(n^2)}&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6&amp;lt;/math&amp;gt; bits. But for sufficiently large n, &amp;lt;math&amp;gt;n^2 &amp;gt; 5n + k + 26&amp;lt;/math&amp;gt; and so  &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6 &amp;gt; BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;. But this is a contradiction, we&#039;ve found a &amp;lt;math&amp;gt;5n + k + 26&amp;lt;/math&amp;gt; bit term which reduces to a normal form larger than &amp;lt;math&amp;gt;BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Thus BBλ(n) is uncomputable. A variation of this argument shows that BBλ(n) eventually dominates all computable functions.&lt;br /&gt;
&lt;br /&gt;
== Binary Lambda Encoding ==&lt;br /&gt;
A lambda term using [https://en.wikipedia.org/wiki/De_Bruijn_indices De Bruijn indexes] is defined inductively as:&lt;br /&gt;
* Variables: For any &amp;lt;math&amp;gt;n \in \mathbb{Z}^+&amp;lt;/math&amp;gt;, Var(&#039;&#039;n&#039;&#039;) is a term. It represents a variable bound by the lambda expression &#039;&#039;n&#039;&#039; above this one (the De Bruijn index). It is typically written simply as &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Lambdas: For any term &#039;&#039;T&#039;&#039;, Lam(&#039;&#039;T&#039;&#039;) is a term. It represents a unary function with function body &#039;&#039;T&#039;&#039;. It is typically written &amp;lt;math&amp;gt;\lambda T&amp;lt;/math&amp;gt; or &amp;lt;code&amp;gt;\T&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Applications: For any terms &#039;&#039;T, U&#039;&#039;, App(&#039;&#039;T, U&#039;&#039;) is a term. It represents applying function &#039;&#039;T&#039;&#039; to argument &#039;&#039;U&#039;&#039;. It is typically written &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can think of this as a tree where each variable is a leaf, a lambda is a node with one child and applications are nodes with 2 children. A term is &#039;&#039;&#039;closed&#039;&#039;&#039; if every variable is bound. In other words, for every Var(&#039;&#039;n&#039;&#039;) leaf node, there exists &#039;&#039;n&#039;&#039; Lam() nodes above it in the tree of the term.&lt;br /&gt;
&lt;br /&gt;
Encoding (&#039;&#039;blc()&#039;&#039;) is defined recursively:&lt;br /&gt;
&amp;lt;math display=&amp;quot;block&amp;quot;&amp;gt;\begin{array}{l}&lt;br /&gt;
  blc(Var(n)) &amp;amp; = &amp;amp; 1^n 0 \\&lt;br /&gt;
  blc(Lam(T)) &amp;amp; = &amp;amp; 00 \; blc(T) \\&lt;br /&gt;
  blc(App(T, U)) &amp;amp; = &amp;amp; 01 \; blc(T) \; blc(U) \\&lt;br /&gt;
\end{array}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For example, the [https://en.wikipedia.org/wiki/Church_encoding#Church_numerals Church numeral] 2: &amp;lt;math&amp;gt;\lambda f x. (f \; (f \; x))&amp;lt;/math&amp;gt; =  &amp;lt;code&amp;gt;\\(2 (2 1))&amp;lt;/code&amp;gt; = &amp;lt;code&amp;gt;Lam(Lam(App(Var(2), App(Var(2), Var(1))))&amp;lt;/code&amp;gt; is encoded as &amp;lt;code&amp;gt;00 00 01 110 01 110 10&amp;lt;/code&amp;gt; or simply &amp;lt;code&amp;gt;0000011100111010&amp;lt;/code&amp;gt; (spaces are not part of the encoding, only used for demonstration purposes) and thus has size 16 bits.&lt;br /&gt;
&lt;br /&gt;
== Text Encoding conventions ==&lt;br /&gt;
For human readability, a text encoding and set of conventions is used in this article. As described earlier we encode a lambda term as:&lt;br /&gt;
* Var(&#039;&#039;n&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;&lt;br /&gt;
* Lam(&#039;&#039;T&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(\T)&amp;lt;/code&amp;gt;&lt;br /&gt;
* App(&#039;&#039;T, U&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
However, parentheses are also dropped in certain cases by convention:&lt;br /&gt;
* The outermost parentheses are dropped: &amp;lt;code&amp;gt;Lam(1)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;App(1, 2)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped immediately inside a Lam: &amp;lt;code&amp;gt;Lam(Lam(1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;Lam(App(1, 1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1 1&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped in nested Apps using left associativity: &amp;lt;code&amp;gt;App(App(1, 2), 3)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2 3&amp;lt;/code&amp;gt;. (Note: parentheses are still required for &amp;lt;code&amp;gt;App(1, App(2, 3))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 (2 3)&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
This is the convention used in John Tromp&#039;s code and so is used here for consistency.&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
There are no closed lambda terms of size 0, 1, 2, 3 or 5 and so BBλ(n) = 0 for those values.&lt;br /&gt;
&amp;lt;math&amp;gt;C(n)&amp;lt;/math&amp;gt; denotes Church numeral &#039;&#039;n&#039;&#039; = &amp;lt;math&amp;gt;\lambda f\lambda x. f^n(x)&amp;lt;/math&amp;gt;.&lt;br /&gt;
In the last column, JT and BF abbreviate John Tromp and Bertram Felgenhauer.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!BBλ(n)&lt;br /&gt;
!Champion&lt;br /&gt;
!Normal form&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|4 || = 4 || &amp;lt;math&amp;gt;\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|6 || = 6 || &amp;lt;math&amp;gt;\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|7 || = 7 || &amp;lt;math&amp;gt;\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|8 || = 8 || &amp;lt;math&amp;gt;\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|9 || = 9 || &amp;lt;math&amp;gt;\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|10 || = 10 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|11 || = 11 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|12 || = 12 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|13 || = 13 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|14 || = 14 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|15 || = 15 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|16 || = 16 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|17 || = 17 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|18 || = 18 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|19 || = 19 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|20 || = 20 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|21 || = 22 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (1 (\lambda 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(1(\lambda 2))(1(\lambda 2))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|22 || = 24 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1 1) (1 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(1 1) (1 1) (1 1)&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|23 || = 26 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (1 (\lambda\lambda 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(1 (\lambda\lambda 2)) (1 (\lambda\lambda 2))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|24 || = 30 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1 1) (1 (\lambda 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(1 (\lambda 1)) (1 (\lambda 1)) (1 (\lambda 1))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|25 || = 42 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda 1 (\lambda 1 (2 1)) (1 (1 (\lambda 1 (2 1))))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|26 || = 52 || &amp;lt;math&amp;gt;(\lambda 1 1) (\lambda\lambda 2 (1 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda\lambda 2 (\lambda\lambda 2 (1 2)) (1 (2 (\lambda\lambda 2 (1 2))))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|27 || = 44 || &amp;lt;math&amp;gt;\lambda\lambda(\lambda 1 1) (\lambda 1 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda\lambda 1 (\lambda 1 (2 1)) (1 (1 (\lambda 1 (2 1))))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|28 || = 58 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (2 (\lambda 2))))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda 1 (\lambda\lambda 1 (3 (\lambda 2))) (1 (\lambda 2 (\lambda\lambda 1 (4 (\lambda 2)))))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
| 29 || = 223|| &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (1 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda B (B (1 B)) \text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;B = (A (A (1 A)))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;A = (1 (\lambda 1 (1 (2 1))))&amp;lt;/math&amp;gt;&lt;br /&gt;
||JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|30&lt;br /&gt;
|= 160&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 1) (\lambda\lambda 2 (1 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;math&amp;gt;\lambda\lambda 2 B A (1 (2 B A)) \text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;B = (\lambda\lambda 2 A (1 (2 A)))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;A = (\lambda\lambda 2 (1 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|31&lt;br /&gt;
|= 267&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1) (\lambda\lambda 2 (2 (1 2)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;math&amp;gt;\lambda\lambda 2 A (2 A (C (2 A))) \text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;C = (2 A (2 A (1 B (2 A))))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;B = (\lambda 3 A (3 A (1 (3 A))))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;A = (\lambda\lambda 2 (2 (1 2)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|32&lt;br /&gt;
|= 298&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (1 (2 (\lambda 2))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|33&lt;br /&gt;
|= 1812&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (1 (1 (2 1))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;math&amp;gt;\lambda C (C (C (1 C))) \text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;C = (B (B (B (1 B)))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;B = (A (A (A (1 A)))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;A = (1 (\lambda 1 (1 (1 (2 1)))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|34 || &amp;lt;math&amp;gt;= 327\,686&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^2}})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|35 || &amp;lt;math&amp;gt;= 5 \cdot 3^{3^3} + 6&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; &amp;gt; 3.8 \times 10^{13}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^3})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|36 || &amp;lt;math&amp;gt;= 5 \cdot 2^{2^{2^3}} + 6&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; &amp;gt; 5.7 \times 10^{77}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1) (\lambda 1 (1 (\lambda\lambda 2 (2 1))))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^3}})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|37 || &amp;lt;math&amp;gt; = 2 + BB\lambda(35)&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;math&amp;gt;\lambda(\lambda 1 1 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x. C(3^{3^3})&amp;lt;/math&amp;gt;||mxdys &amp;amp; JT &amp;amp; dyuan &amp;amp; sligocki&lt;br /&gt;
|-&lt;br /&gt;
|38 || &amp;lt;math&amp;gt;\ge 10^{10^4}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^{2^2}}})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|39 || &amp;lt;math&amp;gt;\ge 10^{10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^{3^3}})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|40 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)\text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;T(0)=x&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{15} 33&amp;lt;/math&amp;gt;&lt;br /&gt;
|| mxdys &amp;amp; racheline&lt;br /&gt;
|-&lt;br /&gt;
|41 || &amp;lt;math&amp;gt;\ge 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;math&amp;gt;(\lambda 1 (\lambda 1 1) 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^{85}})&amp;lt;/math&amp;gt;||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|42 ||&amp;lt;math&amp;gt; \ge 2 + BB\lambda(40)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda(\lambda 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|43 ||&amp;lt;math&amp;gt; &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1) (\lambda 1 (\lambda 1 (\lambda\lambda 2 (2 1)) 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)\text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;T(0)=x&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;T(n+1)=T(n)\;(\lambda y.y\;C(2)\;T(n))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;k &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;&lt;br /&gt;
||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|44 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)\text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;T(0)=x&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|45 || &amp;lt;math&amp;gt; \ge 2 + BB\lambda(43)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (\lambda 1 (\lambda\lambda 2 (2 1)) 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|46 || &amp;lt;math&amp;gt; \ge 2 + BB\lambda(44)&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;math&amp;gt;\lambda(\lambda 1 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|47 || &amp;lt;math&amp;gt;&amp;gt; f_{\omega}\left(f_{5}\left(2\right)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;math&amp;gt;(\lambda 1 1 1)(\lambda\lambda 1 (1 2) (\lambda\lambda 2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| ||50_ft_lock&lt;br /&gt;
|-&lt;br /&gt;
|48 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow\uparrow 4&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right)&amp;lt;/math&amp;gt; &amp;gt; Graham&#039;s number&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1) (\lambda 1 (1 (\lambda\lambda 1 2 (\lambda\lambda 2 (2 1)))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;C(f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right) )&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|61&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{2 \uparrow\uparrow 18-1}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 1) (\lambda 1 (1 (\lambda\lambda\lambda 1 3 2 (\lambda\lambda 2 (2 1)))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;C(f_{\omega^{2 \uparrow\uparrow 18-1}}\left(2\right) )&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://tromp.github.io/blog/2026/01/28/largest-number-revised 50_ft_lock]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|86&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{\omega^{2}}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|90&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\zeta_0}\left(15\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|94&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(12\right)&amp;lt;/math&amp;gt; &amp;gt; TREE(G64)&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-&lt;br /&gt;
|95&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(23\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-&lt;br /&gt;
|96&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(f_{\omega^{\omega^{2}}}\left(2\right)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 (\lambda 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-||||||-&lt;br /&gt;
|100&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)+1}\left(4\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 (\lambda 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-||||||-&lt;br /&gt;
|201&lt;br /&gt;
| &amp;gt; q(5)&lt;br /&gt;
|too large to show&lt;br /&gt;
|&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/laver.lam JT &amp;amp; BF &amp;amp; 50_ft_lock]&lt;br /&gt;
|-||||||-&lt;br /&gt;
|331&lt;br /&gt;
| lim(BMS)&lt;br /&gt;
|too large to show&lt;br /&gt;
|&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/bms.lam Patcail &amp;amp; JT &amp;amp; 50_ft_lock]&lt;br /&gt;
|-||||||-&lt;br /&gt;
|1850&lt;br /&gt;
|&amp;gt; Loader&#039;s number&lt;br /&gt;
|too large to show&lt;br /&gt;
|&lt;br /&gt;
|[https://codegolf.stackexchange.com/questions/176966/golf-a-number-bigger-than-loaders-number/274634#274634 JT]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Oracle Busy Beaver ==&lt;br /&gt;
While BBλ grows uncomputably fast, one can define functions that grow much faster.&lt;br /&gt;
&lt;br /&gt;
Let&#039;s define a higher order busy beaver function BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; by providing oracle access to BBλ.&lt;br /&gt;
&lt;br /&gt;
This is done by enriching the set of terms and possible reduction steps considered in the BB definition.&lt;br /&gt;
&lt;br /&gt;
A 1-closed term is a term in de Bruijn notation that is closed with 1 additional lambda in front. Any variable bound to that lambda is a free variable &#039;&#039;&#039;f&#039;&#039;&#039; in the term.&lt;br /&gt;
&lt;br /&gt;
An oracle reduction step reduces &#039;&#039;&#039;f&#039;&#039;&#039; t, where t is a closed normal form of size s, to Church numeral BBλ(s).&lt;br /&gt;
&lt;br /&gt;
Note that this is almost identical to the oracle steps in Barendregt and Klop&#039;s &amp;quot;Applications of infinitary lambda calculus&amp;quot;, except that they require t itself to be a church numeral. Allowing arbitrary closed t makes oracle steps more widely applicable while aligning with BBλ&#039;s focus on term sizes.&lt;br /&gt;
&lt;br /&gt;
Now let BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; be the maximum beta/oracle normal form size of any 1-closed lambda term of size n, or 0 if no 1-closed term of size n exists. This appears as sequence [[oeis:A385712|A385712]]  in the OEIS.&lt;br /&gt;
&lt;br /&gt;
The following table shows values of BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; up to 22 plus a lower bound for 28, with larger values expressed in terms of function &amp;lt;math&amp;gt;f(n) = 6 + 5 \times BB \lambda(n)&amp;lt;/math&amp;gt;: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!champion&lt;br /&gt;
!BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;math&amp;gt;1&amp;lt;/math&amp;gt;&lt;br /&gt;
|1&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
|5&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda \lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda \lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
|7&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(4) = 26&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda \lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
|9&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(6) = 36&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(7) = 41&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(4) = 266&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(9) = 51&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda \lambda 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(6) = f(36) = 25 \times 2^{2^{2^{3}}}+36 &amp;gt; 2.85 \times 10^{78}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda \lambda 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(7) = f(41) \geq 25 \times 3^{3^{85}}+36 &amp;gt; 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (1 (\lambda 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{3}(4) = f(266)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda \lambda \lambda 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^2(9) = f(51)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda 1) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^4(4) &amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|19&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (1 (\lambda \lambda 2)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^3(7)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 1) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^6(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 2) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^7(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda 1)) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{52}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda 1) 1 (\lambda 1) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge f^{BB \lambda(f^3(4))}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|29&lt;br /&gt;
|&amp;lt;math&amp;gt;1(\lambda 1)(\lambda 1 2 1)(\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge f^{BB \lambda(f^{BB \lambda(f^4(4))+4}(4))+BB \lambda(f^4(4))+5}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
We can generalize BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; to BBλ&amp;lt;sub&amp;gt;α&amp;lt;/sub&amp;gt; for ordinals α by using oracle function BBλ&amp;lt;sub&amp;gt;α-1&amp;lt;/sub&amp;gt; for successor ordinal a, and oracle function (\n -&amp;gt; BBλ&amp;lt;sub&amp;gt;α[n]&amp;lt;/sub&amp;gt;(n)) for limit ordinal α, assuming well-defined fundamental sequences up to α. Because of limited oracle inputs, all oracle busy beavers have identical values up to n=11.&lt;br /&gt;
&lt;br /&gt;
== De Bruijn ==&lt;br /&gt;
We can use De Bruijn index instead of binary to evaluate lambda calculus size. To get the size of an expression, convert it into De Bruijn index then count the number of lambdas / backslashes and numbers. By example, &amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;  is size 8 because it has 3 backslashes and 5 numbers.&lt;br /&gt;
&lt;br /&gt;
For n &amp;lt; 7, BBλ_db(n) = n is trivial and can be achieved via picking any size n term already in normal form, like BBλ(m) for m ≤ 20.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; mw=&amp;quot;collapsible&amp;quot;&lt;br /&gt;
!BBλ_db(n)&lt;br /&gt;
!Value&lt;br /&gt;
!Champion&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|≥ 7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|≥ 16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[User:Azerty|Azerty]] &amp;amp; John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|≥ 68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge 3 \uparrow\uparrow 3 + 3 &amp;gt; 7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge 3 \uparrow\uparrow 4 + 3 &amp;gt; 10^{10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys and racheline&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega}\left(f_{5}\left(2\right)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\1 (1 2) (\\2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|50_ft_lock&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}(2 \uparrow\uparrow 6)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^\omega}(2 \uparrow\uparrow 18)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (1 (\\\1 3 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://tromp.github.io/blog/2026/01/28/largest-number-revised 50_ft_lock]&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{\omega+2}}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\zeta_0}(15)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}(12)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}(f_{\omega^{\omega+2}}(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega+1)}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* https://oeis.org/A333479&lt;br /&gt;
* [https://tromp.github.io/blog/2026/01/28/largest-number-revised The largest number representable in 64 bits]. 28 Jan 2026. John Tromp.&lt;br /&gt;
* [https://gist.github.com/tromp/86b3184f852f65bfb814e3ab0987d861 Binary Lambda Calculus]. John Tromp.&lt;br /&gt;
* https://github.com/tromp/AIT/tree/master/BB&lt;br /&gt;
[[category:Functions]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=CounterScript&amp;diff=7147</id>
		<title>CounterScript</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=CounterScript&amp;diff=7147"/>
		<updated>2026-04-11T16:32:22Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* Champions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;CounterScript&#039;&#039;&#039; is a minimal counter-based programming language designed for &#039;&#039;&#039;Busy Beaver–style program enumeration and analysis&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
It features a very small instruction set operating over an unbounded set of nonnegative integer variables (&#039;&#039;counters&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BBCS&#039;&#039;&#039;(n) is the Busy Beaver function for &#039;&#039;&#039;CounterScript&#039;&#039;&#039; programs.&lt;br /&gt;
&lt;br /&gt;
= Definition =&lt;br /&gt;
A CounterScript program consists of a finite sequence of instructions drawn from three primitives:&lt;br /&gt;
&lt;br /&gt;
* Increment a counter&lt;br /&gt;
* Conditional decrement&lt;br /&gt;
* While loop&lt;br /&gt;
&lt;br /&gt;
All counters are initialized to &amp;lt;code&amp;gt;0&amp;lt;/code&amp;gt; and can grow without bound.&lt;br /&gt;
&lt;br /&gt;
The model is closely related to &#039;&#039;&#039;Minsky register machines,&#039;&#039;&#039; &#039;&#039;&#039;Fractran&#039;&#039;&#039; and &#039;&#039;&#039;Brainfuck&#039;&#039;&#039;, and is therefore [[Turing-complete]].&lt;br /&gt;
&lt;br /&gt;
== Instructions ==&lt;br /&gt;
Instructions are executed one by one from left to right.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!Command&lt;br /&gt;
!Definition&lt;br /&gt;
|-&lt;br /&gt;
|Increment&lt;br /&gt;
|&amp;lt;code&amp;gt;A++&amp;lt;/code&amp;gt;&lt;br /&gt;
|Increment counter A by 1&lt;br /&gt;
|-&lt;br /&gt;
|Decrement&lt;br /&gt;
|&amp;lt;code&amp;gt;A--&amp;lt;/code&amp;gt;&lt;br /&gt;
|Decrement counter A by 1 if A &amp;gt; 0&lt;br /&gt;
|-&lt;br /&gt;
|While loop&lt;br /&gt;
|&amp;lt;code&amp;gt;while A {...}&amp;lt;/code&amp;gt;&lt;br /&gt;
|Executes the loop body while &amp;lt;code&amp;gt;x &amp;gt; 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Program size =&lt;br /&gt;
The &#039;&#039;&#039;length&#039;&#039;&#039; of a CounterScript program is defined as the total number of instructions.&lt;br /&gt;
&lt;br /&gt;
By example, &amp;lt;code&amp;gt;A++; while A {A--; B++;}&amp;lt;/code&amp;gt; has length 4.&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible&amp;quot;&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!n&lt;br /&gt;
!BBCS(n)&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++; A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++; A++; A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|≥9&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; while A {A--; B++; B++; B++;}&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|≥12&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++; while A {A--; B++; B++; B++;}&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|≥16&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++; while A {A--; B++; B++; B++; B++;}&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=CounterScript&amp;diff=7146</id>
		<title>CounterScript</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=CounterScript&amp;diff=7146"/>
		<updated>2026-04-11T16:32:00Z</updated>

		<summary type="html">&lt;p&gt;Azerty: Created page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;CounterScript&#039;&#039;&#039; is a minimal counter-based programming language designed for &#039;&#039;&#039;Busy Beaver–style program enumeration and analysis&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
It features a very small instruction set operating over an unbounded set of nonnegative integer variables (&#039;&#039;counters&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BBCS&#039;&#039;&#039;(n) is the Busy Beaver function for &#039;&#039;&#039;CounterScript&#039;&#039;&#039; programs.&lt;br /&gt;
&lt;br /&gt;
= Definition =&lt;br /&gt;
A CounterScript program consists of a finite sequence of instructions drawn from three primitives:&lt;br /&gt;
&lt;br /&gt;
* Increment a counter&lt;br /&gt;
* Conditional decrement&lt;br /&gt;
* While loop&lt;br /&gt;
&lt;br /&gt;
All counters are initialized to &amp;lt;code&amp;gt;0&amp;lt;/code&amp;gt; and can grow without bound.&lt;br /&gt;
&lt;br /&gt;
The model is closely related to &#039;&#039;&#039;Minsky register machines,&#039;&#039;&#039; &#039;&#039;&#039;Fractran&#039;&#039;&#039; and &#039;&#039;&#039;Brainfuck&#039;&#039;&#039;, and is therefore [[Turing-complete]].&lt;br /&gt;
&lt;br /&gt;
== Instructions ==&lt;br /&gt;
Instructions are executed one by one from left to right.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!Command&lt;br /&gt;
!Definition&lt;br /&gt;
|-&lt;br /&gt;
|Increment&lt;br /&gt;
|&amp;lt;code&amp;gt;A++&amp;lt;/code&amp;gt;&lt;br /&gt;
|Increment counter A by 1&lt;br /&gt;
|-&lt;br /&gt;
|Decrement&lt;br /&gt;
|&amp;lt;code&amp;gt;A--&amp;lt;/code&amp;gt;&lt;br /&gt;
|Decrement counter A by 1 if A &amp;gt; 0&lt;br /&gt;
|-&lt;br /&gt;
|While loop&lt;br /&gt;
|&amp;lt;code&amp;gt;while A {...}&amp;lt;/code&amp;gt;&lt;br /&gt;
|Executes the loop body while &amp;lt;code&amp;gt;x &amp;gt; 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= Program size =&lt;br /&gt;
The &#039;&#039;&#039;length&#039;&#039;&#039; of a CounterScript program is defined as the total number of instructions.&lt;br /&gt;
&lt;br /&gt;
By example, &amp;lt;code&amp;gt;A++; while A {A--; B++;}&amp;lt;/code&amp;gt; has length 4.&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;toccolours mw-collapsible mw-collapsed&amp;quot;&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!n&lt;br /&gt;
!BBCS(n)&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++; A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++; A++; A++; A++;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|≥9&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; while A {A--; B++; B++; B++;}&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|≥12&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++; while A {A--; B++; B++; B++;}&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|≥16&lt;br /&gt;
|&amp;lt;code&amp;gt;A++; A++; A++; A++; while A {A--; B++; B++; B++; B++;}&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=TMBR:_March_2026&amp;diff=7118</id>
		<title>TMBR: March 2026</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=TMBR:_March_2026&amp;diff=7118"/>
		<updated>2026-04-10T16:20:18Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* BB Adjacent */ Added CounterScript&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TMBRnav|February 2026|April 2026}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This edition of TMBR is in progress and has not yet been released. Please add any notes you think may be relevant (including in the form a of a TODO with a link to any relevant Discord discussion).&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[:Category:This Month in Beaver Research|This Month in Beaver Research]] for March 2026. We celebrated bbchallenge&#039;s fourth birthday on 8 March. This month was quite a substantial month in Beaver research, as after more than 200 days, the last 3 informally solved [[BB(3,3)]] holdouts were [https://discord.com/channels/960643023006490684/1259770474897080380/1482680295357677651 formalised by mxdys in Rocq.] Following the now-tradition, 3 &#039;&#039;&#039;new&#039;&#039;&#039; [[BB(2,5)]] machines were proven to not halt! This leaves us with 60 informal holdouts. There has been a 4.37% reduction in [[BB(6)]], and quite a lot of results in [[Fractran]]: With the help of AI Agent Claude Opus 4.6, it was proven tentatively that BBf(21) = 31,957,632 and that a [[Cryptid]] exists in BBf(22), which means that [[Fractran#Fenrir|BBf(22) Is Hard]].&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
&lt;br /&gt;
* Discord user 50_ft_lock [https://discord.com/channels/960643023006490684/1331570843829932063/1481871400640839691 found] a new BB(13) [[Champions|champion]] which surpasses [[Graham&#039;s number]], reducing the upper bound of Graham-beating TMs to 13 states.&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
* {{TM|1RB0RB_1LC1RE_1LF0LD_1RA1LD_1RC1RB_---1LC|undecided}} was shown to be a probviously non-halting [[Cryptid]] similar to [[Space Needle]] by DrDisentangle.&lt;br /&gt;
* mxdys made a new Turing Machine Visualizer using longitudinal acceleration (for shift-overflow mixed-digit non-unary counters)&amp;lt;sup&amp;gt;[https://discord.com/channels/960643023006490684/1239205785913790465/1488164940303958136 &amp;lt;nowiki&amp;gt;[1]&amp;lt;/nowiki&amp;gt;]&amp;lt;/sup&amp;gt; which is available at https://ccz181078.github.io/TM/LongAcc/index.html.&lt;br /&gt;
&lt;br /&gt;
== Meta ==&lt;br /&gt;
&lt;br /&gt;
* Famous math Youtuber [https://www.youtube.com/@twoswap 2swap] made a [https://discord.com/channels/960643023006490684/1362008236118511758/1478973587653136456 couple of videos about Turing Machines] arranged into grids and colored based on their halting status for BB(2,2), BB(3,2), BB(2,3), BB(4,2) and BB(5,2) respectively, then made a [https://www.youtube.com/watch?v=1BI3qItCJ2M two-hour long Youtube video] about the same topic on [https://www.youtube.com/@3cycle their second channel].&lt;br /&gt;
&lt;br /&gt;
== BB Adjacent ==&lt;br /&gt;
* [[Fractran]]: In BBf(21), Claude Opus 4.6 gave a proof that all 140 holdouts do not halt. This tentatively proves that BBf(21) = 31,957,632.&lt;br /&gt;
* [[Fractran]]: A Cryptid was discovered in BBf(22) with the help of Claude Opus 4.6, which was named [[wikipedia:Fenrir|Fenrir]] from [[wikipedia:Norse_mythology|Nordic mythology.]]&lt;br /&gt;
* [[Fractran]]: Katelyn Doucette started working on a program to visualize fractran spacetime diagrams just like for TMs: &lt;br /&gt;
** [https://discord.com/channels/960643023006490684/1438019511155691521/1484649168638185689 Frankenstein&#039;s Monster]&lt;br /&gt;
** [https://discord.com/channels/960643023006490684/1438019511155691521/1484648223133012149 BBf(20) champion]&lt;br /&gt;
** [https://discord.com/channels/960643023006490684/1438019511155691521/1484692739961655356 Hydra]&lt;br /&gt;
** [https://discord.com/channels/960643023006490684/1438019511155691521/1484692800917344366 Space Needle]&lt;br /&gt;
*Discord user azertyordinal introduced an esolang called CounterScript and its Busy Beaver function BBCS.&lt;br /&gt;
**Discord user realsheepthe made a cryptid of length 23 that computes a variation of [[Hydra function]] and a length 92 program that may surpass Graham&#039;s number.&lt;br /&gt;
&lt;br /&gt;
== Holdouts ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+BB Holdout Reduction by Domain&lt;br /&gt;
!Domain&lt;br /&gt;
!Previous Holdout Count&lt;br /&gt;
!New Holdout Count&lt;br /&gt;
!Holdout Reduction&lt;br /&gt;
!% Reduction&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(6)]]&lt;br /&gt;
|1214&lt;br /&gt;
|1161&lt;br /&gt;
|53&lt;br /&gt;
|4.37%&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(7)]]&lt;br /&gt;
|18,195,192&lt;br /&gt;
|18,036,852&lt;br /&gt;
|158,340&lt;br /&gt;
|0.87%&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,5)]]&lt;br /&gt;
|72&lt;br /&gt;
|69&lt;br /&gt;
|3&lt;br /&gt;
|4.17%&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,6)]]&lt;br /&gt;
|548,993&lt;br /&gt;
|545,005&lt;br /&gt;
|3,988&lt;br /&gt;
|0.73%&lt;br /&gt;
|}&lt;br /&gt;
* [[BB(6)]]: 1e14 machines: &#039;&#039;&#039;170&#039;&#039;&#039;. 1e15 machines: &#039;&#039;&#039;237&#039;&#039;&#039;. &#039;&#039;&#039;53 solved machines&#039;&#039;&#039;.&lt;br /&gt;
** [https://docs.google.com/spreadsheets/d/1mMp8bAcTFT91j7azn72liX8NSTwc2E_ozKnOGTfRCfw/edit?gid=806905077#gid=806905077 Holdouts lists] for machines not simulated to &#039;&#039;&#039;1e14 and 1e15&#039;&#039;&#039; steps were created. The holdouts list counts were &#039;&#039;&#039;178 and 252&#039;&#039;&#039; respectively. See [https://docs.google.com/spreadsheets/d/1mMp8bAcTFT91j7azn72liX8NSTwc2E_ozKnOGTfRCfw/edit?gid=806905077#gid=806905077 Spreadsheet for BB6].&lt;br /&gt;
** Later, [https://discord.com/channels/960643023006490684/1477591686514212894/1478401591307407554 prurq found 10 more machines] in the holdouts list that had previously been simulated to 1e15: thus the new 1e15 holdout count was &#039;&#039;&#039;242.&#039;&#039;&#039;&lt;br /&gt;
** Andrew Ducharme [https://discord.com/channels/960643023006490684/1239205785913790465/1478626634729914450 solved two machines] using FAR.&lt;br /&gt;
** prurq found two machines&amp;lt;sup&amp;gt;[https://discord.com/channels/960643023006490684/1239205785913790465/1478518151393312822 &amp;lt;nowiki&amp;gt;[2]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1239205785913790465/1478525451826888775 &amp;lt;nowiki&amp;gt;[3]&amp;lt;/nowiki&amp;gt;]&amp;lt;/sup&amp;gt; to be [[Translated Cycler|Translated Cyclers]]. Shawn Ligocki [https://discord.com/channels/960643023006490684/1239205785913790465/1478781268664778989 verified one of them] and discovered its preperiod to be over &amp;lt;math&amp;gt;10^{12}&amp;lt;/math&amp;gt; steps. mxdys [https://discord.com/channels/960643023006490684/1239205785913790465/1478827653636296850 verified the other]. Both were 1e14 and 1e15 holdouts, thus reducing those holdout counts by 2.&lt;br /&gt;
** mxdys found four more&amp;lt;sup&amp;gt;[https://discord.com/channels/960643023006490684/1239205785913790465/1478734570672095333 &amp;lt;nowiki&amp;gt;[4]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1239205785913790465/1479045001089384600 &amp;lt;nowiki&amp;gt;[5]&amp;lt;/nowiki&amp;gt;]&amp;lt;/sup&amp;gt; Translated Cyclers in the remaining holdouts and solved [https://discord.com/channels/960643023006490684/1239205785913790465/1478828100707025151 one more TM] using FAR.&lt;br /&gt;
** Andrew Ducharme [https://discord.com/channels/960643023006490684/1239205785913790465/1479313219003748484 solved a machine] using FAR. This machine was a 1e14 and 1e15 holdout, thus reducing those holdout counts by 1.&lt;br /&gt;
** [https://discord.com/channels/960643023006490684/1477591686514212894/1480544451033170060 prurq found 3 more machines previously simulated so far] in the 1e14 list, and 2 more in the 1e15 list (both were also 1e14). This means 1e14 holdout count was reduced by 3, and 1e15 holdout count was reduced by 2.&lt;br /&gt;
** Discord user mammillaria [https://discord.com/channels/960643023006490684/1239205785913790465/1480686400067342346 simulated a 1e14 holdout thus far], and then [https://discord.com/channels/960643023006490684/1477591686514212894/1483655806917279816 another 9 days later], therefore reducing that holdout count by 2.&lt;br /&gt;
** prurq [https://discord.com/channels/960643023006490684/1471178503235043493/1481022684975337586 found a machine to be a Translated Cycler].&lt;br /&gt;
** mxdys [https://discord.com/channels/960643023006490684/1239205785913790465/1481557945346035814 decided a machine] using FAR.&lt;br /&gt;
** mxdys [https://discord.com/channels/960643023006490684/1239205785913790465/1486207538843222116 released] a new holdout list of &#039;&#039;&#039;1161&#039;&#039;&#039; machines. The new informal holdout count is &#039;&#039;&#039;1159&#039;&#039;&#039;, and the Rocq-verified holdout count is &#039;&#039;&#039;1187.&#039;&#039;&#039;&lt;br /&gt;
*[[BB(7)]]:&lt;br /&gt;
**Andrew Ducharme [https://discord.com/channels/960643023006490684/1369339127652159509/1481889113232904295 reduced] the number of holdouts from 18,195,192 to &#039;&#039;&#039;18,036,852&#039;&#039;&#039; (a 0.87% reduction) via the mxdys FAR decider.&lt;br /&gt;
*[[BB(2,5)]]:&lt;br /&gt;
**[https://discord.com/channels/960643023006490684/1259770421046411285/1481197573611061311 Peacemaker II solved a machine using FAR] and mxdys confirmed two&amp;lt;sup&amp;gt;[https://discord.com/channels/960643023006490684/1259770421046411285/1483043448855461989 &amp;lt;nowiki&amp;gt;[6]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1259770421046411285/1483043657778069564 &amp;lt;nowiki&amp;gt;[7]&amp;lt;/nowiki&amp;gt;]&amp;lt;/sup&amp;gt; machines to be non-halting. Thus, the new holdout count is &#039;&#039;&#039;69&#039;&#039;&#039;, or &#039;&#039;&#039;60&#039;&#039;&#039; considering informal proofs.&lt;br /&gt;
*[[BB(2,6)]]:&lt;br /&gt;
**A new filtering run by Andrew Ducharme has reduced to number of holdouts from 548,993 to &#039;&#039;&#039;545,005&#039;&#039;&#039;.&amp;lt;sup&amp;gt;[https://discord.com/channels/960643023006490684/1084047886494470185/1487675435473961132 &amp;lt;nowiki&amp;gt;[8]&amp;lt;/nowiki&amp;gt;]&amp;lt;/sup&amp;gt;&lt;br /&gt;
*[[BB(3,3)]]:&lt;br /&gt;
**mxdys [https://discord.com/channels/960643023006490684/1259770474897080380/1482680295357677651 formalised] three remaining informal results (650, 412, 279) into Rocq.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:This Month in Beaver Research|2026-03]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=1RB1RC_1LC1LE_1RA1RD_0RF0RE_1LA0LB_---1RA&amp;diff=6890</id>
		<title>1RB1RC 1LC1LE 1RA1RD 0RF0RE 1LA0LB ---1RA</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=1RB1RC_1LC1LE_1RA1RD_0RF0RE_1LA0LB_---1RA&amp;diff=6890"/>
		<updated>2026-03-31T19:56:52Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* Analysis by @mxdys */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{machine|1RB1RC_1LC1LE_1RA1RD_0RF0RE_1LA0LB_---1RA}}{{unsolved|Does this TM run forever?}}&lt;br /&gt;
{{TM|1RB1RC_1LC1LE_1RA1RD_0RF0RE_1LA0LB_---1RA}} is a [[BB(6)]] [[Cryptid]] found by @mxdys and shared on Discord on 27 Jul 2024. It&#039;s closely related to [[Hydra]] and [[Antihydra]].&lt;br /&gt;
&lt;br /&gt;
== Analysis by @mxdys ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
antihydra variant:&lt;br /&gt;
1RB1RC_1LC1LE_1RA1RD_0RF0RE_1LA0LB_---1RA&lt;br /&gt;
&lt;br /&gt;
(n,m) := 0^inf C&amp;gt; 01011 01^n 1 01^m 0^inf&lt;br /&gt;
&lt;br /&gt;
start from (3,1)&lt;br /&gt;
(2n+1,m) --&amp;gt; (3n+3,m+2)&lt;br /&gt;
(2n,m+1) --&amp;gt; (3n+3,m)&lt;br /&gt;
(4n,0) --&amp;gt; (9n+6,1)&lt;br /&gt;
(4n+2,0) --&amp;gt; halt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
The rules are proven in [https://github.com/ccz181078/busycoq/blob/BB6/verify/AntiHydra2.v Rocq].&lt;br /&gt;
&lt;br /&gt;
== Analysis by @dyuan01 ==&lt;br /&gt;
Using B(a, b) = (3a-6, b), I&#039;ve come up with these rules:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Start from B(3, 1)&lt;br /&gt;
B(2n, m+1) → B(3n, m)&lt;br /&gt;
B(2n+1, m) → B(3n+1, m+2)&lt;br /&gt;
B(4n+2, 0) → B(9n+4, 1)&lt;br /&gt;
B(4n, 0) → halt&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This is actually just Hydra except you start at B(3, 1) instead of B(3, 0) and you don&#039;t necessarily halt if you reach -1. In fact, this can only halt if Hydra halts.&lt;br /&gt;
&lt;br /&gt;
[[Category:BB(6)]][[Category:Cryptids]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=6673</id>
		<title>Busy Beaver for lambda calculus</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=6673"/>
		<updated>2026-03-23T21:22:11Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* De Bruijn */ Updated length 14 champion.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Busy Beaver for lambda calculus&#039;&#039;&#039; (&#039;&#039;&#039;BBλ&#039;&#039;&#039;) is a variation of the [[Busy Beaver]] problem for [https://en.wikipedia.org/wiki/Lambda_calculus lambda calculus] invented by John Tromp. BBλ(n) = the maximum normal form size of any closed lambda term of size n (or 0 if no closed term of size n exists). Like the traditional Busy Beaver functions, it is uncomputable (and in fact grows faster than any computable function). If you are not familiar with lambda calculus and beta-reduction, it is recommended to start with that article.&lt;br /&gt;
&lt;br /&gt;
Size is measured in bits using [https://tromp.github.io/cl/Binary_lambda_calculus.html Binary Lambda Calculus] which is a binary prefix-free encoding for all closed lambda calculus terms.&lt;br /&gt;
&lt;br /&gt;
== Analogy to Turing machines ==&lt;br /&gt;
We evaluate terms by applying &#039;&#039;beta-reductions&#039;&#039; until they reach a &#039;&#039;normal form&#039;&#039;. As an analogy to [[Turing machines]]:&lt;br /&gt;
* &#039;&#039;Lambda terms&#039;&#039; are like TM configurations (tape + state + position).&lt;br /&gt;
* Applying &#039;&#039;beta-reduction&#039;&#039; to a term is like taking a TM step.&lt;br /&gt;
* A term is in &#039;&#039;normal form&#039;&#039; if no beta-reductions can be applied. This is like saying the term has halted.&lt;br /&gt;
* A term may or may not be reducible to a normal form. If it is, this is like saying the term halts.&lt;br /&gt;
* Determining whether a term is reducible to a normal form is an undecidable problem equivalent to the halting problem.&lt;br /&gt;
&lt;br /&gt;
Note: That unlike for Turing machines, evaluating lambda terms is non-deterministic. Specifically, there may be multiple beta-reductions possible in a given term. However, if a term can be reduced to a normal form, that normal form is unique. It is not possible to reduce the original term to any different normal form. A term is &#039;&#039;&#039;strongly normalizing&#039;&#039;&#039; if any choice of beta-reductions will lead to this normal form and &#039;&#039;&#039;weakly normalizing&#039;&#039;&#039; if there exist divergent reduction paths which never reach the normal form.&lt;br /&gt;
&lt;br /&gt;
== Proof of Uncomputability ==&lt;br /&gt;
The proof that BBλ(n) is uncomputable is very similar to Radó&#039;s original proof that Σ(n) is uncomputable. Proof by contradiction:&lt;br /&gt;
&lt;br /&gt;
Assume BBλ is computable and so there exists a term &#039;&#039;f&#039;&#039; which computes it on [[wikipedia:Church_encoding|Church numerals]]. In other words: for all &amp;lt;math&amp;gt;n \in \N&amp;lt;/math&amp;gt;: &amp;lt;math&amp;gt;(f \; C_n)&amp;lt;/math&amp;gt; beta reduces to normal form &amp;lt;math&amp;gt;C_{BB\lambda(n)}&amp;lt;/math&amp;gt; (where &amp;lt;math&amp;gt;C_n&amp;lt;/math&amp;gt; denotes the Church numeral &#039;&#039;n&#039;&#039;). Denote the binary lambda encoded size of &#039;&#039;f&#039;&#039; as &#039;&#039;k&#039;&#039;. Consider the term &amp;lt;math&amp;gt;f \; (C_2 \; C_n)&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;2+k+2+(5\times2+6)+(5n+6) = 5n + k + 26&amp;lt;/math&amp;gt; bits. This term reduces to &amp;lt;math&amp;gt;C_{BB\lambda(n^2)}&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6&amp;lt;/math&amp;gt; bits. But for sufficiently large n, &amp;lt;math&amp;gt;n^2 &amp;gt; 5n + k + 26&amp;lt;/math&amp;gt; and so  &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6 &amp;gt; BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;. But this is a contradiction, we&#039;ve found a &amp;lt;math&amp;gt;5n + k + 26&amp;lt;/math&amp;gt; bit term which reduces to a normal form larger than &amp;lt;math&amp;gt;BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Thus BBλ(n) is uncomputable. A variation of this argument shows that BBλ(n) eventually dominates all computable functions.&lt;br /&gt;
&lt;br /&gt;
== Binary Lambda Encoding ==&lt;br /&gt;
A lambda term using [https://en.wikipedia.org/wiki/De_Bruijn_indices De Bruijn indexes] is defined inductively as:&lt;br /&gt;
* Variables: For any &amp;lt;math&amp;gt;n \in \mathbb{Z}^+&amp;lt;/math&amp;gt;, Var(&#039;&#039;n&#039;&#039;) is a term. It represents a variable bound by the lambda expression &#039;&#039;n&#039;&#039; above this one (the De Bruijn index). It is typically written simply as &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Lambdas: For any term &#039;&#039;T&#039;&#039;, Lam(&#039;&#039;T&#039;&#039;) is a term. It represents a unary function with function body &#039;&#039;T&#039;&#039;. It is typically written &amp;lt;math&amp;gt;\lambda T&amp;lt;/math&amp;gt; or &amp;lt;code&amp;gt;\T&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Applications: For any terms &#039;&#039;T, U&#039;&#039;, App(&#039;&#039;T, U&#039;&#039;) is a term. It represents applying function &#039;&#039;T&#039;&#039; to argument &#039;&#039;U&#039;&#039;. It is typically written &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can think of this as a tree where each variable is a leaf, a lambda is a node with one child and applications are nodes with 2 children. A term is &#039;&#039;&#039;closed&#039;&#039;&#039; if every variable is bound. In other words, for every Var(&#039;&#039;n&#039;&#039;) leaf node, there exists &#039;&#039;n&#039;&#039; Lam() nodes above it in the tree of the term.&lt;br /&gt;
&lt;br /&gt;
Encoding (&#039;&#039;blc()&#039;&#039;) is defined recursively:&lt;br /&gt;
&amp;lt;math display=&amp;quot;block&amp;quot;&amp;gt;\begin{array}{l}&lt;br /&gt;
  blc(Var(n)) &amp;amp; = &amp;amp; 1^n 0 \\&lt;br /&gt;
  blc(Lam(T)) &amp;amp; = &amp;amp; 00 \; blc(T) \\&lt;br /&gt;
  blc(App(T, U)) &amp;amp; = &amp;amp; 01 \; blc(T) \; blc(U) \\&lt;br /&gt;
\end{array}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For example, the [https://en.wikipedia.org/wiki/Church_encoding#Church_numerals Church numeral] 2: &amp;lt;math&amp;gt;\lambda f x. (f \; (f \; x))&amp;lt;/math&amp;gt; =  &amp;lt;code&amp;gt;\\(2 (2 1))&amp;lt;/code&amp;gt; = &amp;lt;code&amp;gt;Lam(Lam(App(Var(2), App(Var(2), Var(1))))&amp;lt;/code&amp;gt; is encoded as &amp;lt;code&amp;gt;00 00 01 110 01 110 10&amp;lt;/code&amp;gt; or simply &amp;lt;code&amp;gt;0000011100111010&amp;lt;/code&amp;gt; (spaces are not part of the encoding, only used for demonstration purposes) and thus has size 16 bits.&lt;br /&gt;
&lt;br /&gt;
== Text Encoding conventions ==&lt;br /&gt;
For human readability, a text encoding and set of conventions is used in this article. As described earlier we encode a lambda term as:&lt;br /&gt;
* Var(&#039;&#039;n&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;&lt;br /&gt;
* Lam(&#039;&#039;T&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(\T)&amp;lt;/code&amp;gt;&lt;br /&gt;
* App(&#039;&#039;T, U&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
However, parentheses are also dropped in certain cases by convention:&lt;br /&gt;
* The outermost parentheses are dropped: &amp;lt;code&amp;gt;Lam(1)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;App(1, 2)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped immediately inside a Lam: &amp;lt;code&amp;gt;Lam(Lam(1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;Lam(App(1, 1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1 1&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped in nested Apps using left associativity: &amp;lt;code&amp;gt;App(App(1, 2), 3)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2 3&amp;lt;/code&amp;gt;. (Note: parentheses are still required for &amp;lt;code&amp;gt;App(1, App(2, 3))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 (2 3)&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
This is the convention used in John Tromp&#039;s code and so is used here for consistency.&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
There are no closed lambda terms of size 0, 1, 2, 3 or 5 and so BBλ(n) = 0 for those values.&lt;br /&gt;
&amp;lt;math&amp;gt;C(n)&amp;lt;/math&amp;gt; denotes Church numeral &#039;&#039;n&#039;&#039; = &amp;lt;math&amp;gt;\lambda f\lambda x. f^n(x)&amp;lt;/math&amp;gt;.&lt;br /&gt;
In the last column, JT and BF abbreviate John Tromp and Bertram Felgenhauer.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!BBλ(n)&lt;br /&gt;
!Champion&lt;br /&gt;
!Normal form&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|4 || = 4 || &amp;lt;math&amp;gt;\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|6 || = 6 || &amp;lt;math&amp;gt;\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|7 || = 7 || &amp;lt;math&amp;gt;\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|8 || = 8 || &amp;lt;math&amp;gt;\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|9 || = 9 || &amp;lt;math&amp;gt;\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|10 || = 10 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|11 || = 11 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|12 || = 12 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|13 || = 13 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|14 || = 14 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|15 || = 15 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|16 || = 16 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|17 || = 17 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|18 || = 18 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|19 || = 19 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|20 || = 20 || &amp;lt;math&amp;gt;\lambda\lambda\lambda\lambda\lambda\lambda\lambda\lambda\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
||| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|21 || = 22 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (1 (\lambda 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(1(\lambda 2))(1(\lambda 2))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|22 || = 24 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1 1) (1 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(1 1) (1 1) (1 1)&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|23 || = 26 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (1 (\lambda\lambda 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(1 (\lambda\lambda 2)) (1 (\lambda\lambda 2))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|24 || = 30 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1 1) (1 (\lambda 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(1 (\lambda 1)) (1 (\lambda 1)) (1 (\lambda 1))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|25 || = 42 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda 1 (\lambda 1 (2 1)) (1 (1 (\lambda 1 (2 1))))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|26 || = 52 || &amp;lt;math&amp;gt;(\lambda 1 1) (\lambda\lambda 2 (1 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda\lambda 2 (\lambda\lambda 2 (1 2)) (1 (2 (\lambda\lambda 2 (1 2))))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|27 || = 44 || &amp;lt;math&amp;gt;\lambda\lambda(\lambda 1 1) (\lambda 1 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda\lambda 1 (\lambda 1 (2 1)) (1 (1 (\lambda 1 (2 1))))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|28 || = 58 || &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (2 (\lambda 2))))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda 1 (\lambda\lambda 1 (3 (\lambda 2))) (1 (\lambda 2 (\lambda\lambda 1 (4 (\lambda 2)))))&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
| 29 || = 223|| &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (1 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda B (B (1 B)) \text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;B = (A (A (1 A)))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;A = (1 (\lambda 1 (1 (2 1))))&amp;lt;/math&amp;gt;&lt;br /&gt;
||JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|30&lt;br /&gt;
|= 160&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 1) (\lambda\lambda 2 (1 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;math&amp;gt;\lambda\lambda 2 B A (1 (2 B A)) \text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;B = (\lambda\lambda 2 A (1 (2 A)))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;A = (\lambda\lambda 2 (1 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|31&lt;br /&gt;
|= 267&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1) (\lambda\lambda 2 (2 (1 2)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;math&amp;gt;\lambda\lambda 2 A (2 A (C (2 A))) \text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;C = (2 A (2 A (1 B (2 A))))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;B = (\lambda 3 A (3 A (1 (3 A))))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;A = (\lambda\lambda 2 (2 (1 2)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|32&lt;br /&gt;
|= 298&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (1 (2 (\lambda 2))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|33&lt;br /&gt;
|= 1812&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (1 (1 (2 1))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;math&amp;gt;\lambda C (C (C (1 C))) \text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;C = (B (B (B (1 B)))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;B = (A (A (A (1 A)))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;A = (1 (\lambda 1 (1 (1 (2 1)))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|34 || &amp;lt;math&amp;gt;= 327\,686&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^2}})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|35 || &amp;lt;math&amp;gt;= 5 \cdot 3^{3^3} + 6&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; &amp;gt; 3.8 \times 10^{13}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^3})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|36 || &amp;lt;math&amp;gt;= 5 \cdot 2^{2^{2^3}} + 6&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; &amp;gt; 5.7 \times 10^{77}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1) (\lambda 1 (1 (\lambda\lambda 2 (2 1))))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^3}})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|37 || &amp;lt;math&amp;gt; = 2 + BB\lambda(35)&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;math&amp;gt;\lambda(\lambda 1 1 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x. C(3^{3^3})&amp;lt;/math&amp;gt;||mxdys &amp;amp; JT &amp;amp; dyuan &amp;amp; sligocki&lt;br /&gt;
|-&lt;br /&gt;
|38 || &amp;lt;math&amp;gt;\ge 10^{10^4}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^{2^2}}})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|39 || &amp;lt;math&amp;gt;\ge 10^{10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^{3^3}})&amp;lt;/math&amp;gt;|| JT &amp;amp; BF&lt;br /&gt;
|-&lt;br /&gt;
|40 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)\text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;T(0)=x&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{15} 33&amp;lt;/math&amp;gt;&lt;br /&gt;
|| mxdys &amp;amp; racheline&lt;br /&gt;
|-&lt;br /&gt;
|41 || &amp;lt;math&amp;gt;\ge 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;math&amp;gt;(\lambda 1 (\lambda 1 1) 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^{85}})&amp;lt;/math&amp;gt;||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|42 ||&amp;lt;math&amp;gt; \ge 2 + BB\lambda(40)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda(\lambda 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|43 ||&amp;lt;math&amp;gt; &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1) (\lambda 1 (\lambda 1 (\lambda\lambda 2 (2 1)) 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)\text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;T(0)=x&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;T(n+1)=T(n)\;(\lambda y.y\;C(2)\;T(n))&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;k &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;&lt;br /&gt;
||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|44 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)\text{ where}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;T(0)=x&amp;lt;/math&amp;gt;,&lt;br /&gt;
&amp;lt;math&amp;gt;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt;, &lt;br /&gt;
&amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|45 || &amp;lt;math&amp;gt; \ge 2 + BB\lambda(43)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda(\lambda 1 1) (\lambda 1 (\lambda 1 (\lambda\lambda 2 (2 1)) 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|46 || &amp;lt;math&amp;gt; \ge 2 + BB\lambda(44)&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;math&amp;gt;\lambda(\lambda 1 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|47 || &amp;lt;math&amp;gt;&amp;gt; f_{\omega}\left(f_{5}\left(2\right)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;math&amp;gt;(\lambda 1 1 1)(\lambda\lambda 1 (1 2) (\lambda\lambda 2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
| ||50_ft_lock&lt;br /&gt;
|-&lt;br /&gt;
|48 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow\uparrow 4&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;(\lambda 1 1 1 1 1) (\lambda 1 (\lambda\lambda 2 (2 1)) 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right)&amp;lt;/math&amp;gt; &amp;gt; Graham&#039;s number&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1) (\lambda 1 (1 (\lambda\lambda 1 2 (\lambda\lambda 2 (2 1)))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;C(f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right) )&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|61&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{2 \uparrow\uparrow 18-1}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 1) (\lambda 1 (1 (\lambda\lambda\lambda 1 3 2 (\lambda\lambda 2 (2 1)))))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;C(f_{\omega^{2 \uparrow\uparrow 18-1}}\left(2\right) )&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://tromp.github.io/blog/2026/01/28/largest-number-revised 50_ft_lock]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|86&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{\omega^{2}}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|90&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\zeta_0}\left(15\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|94&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(12\right)&amp;lt;/math&amp;gt; &amp;gt; TREE(G64)&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-&lt;br /&gt;
|95&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(23\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) (\lambda\lambda 2 (2 (2 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-&lt;br /&gt;
|96&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(f_{\omega^{\omega^{2}}}\left(2\right)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 (\lambda 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-||||||-&lt;br /&gt;
|100&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)+1}\left(4\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;(\lambda 1 1 (\lambda 1 (\lambda\lambda\lambda\lambda 1 4 4 4 3 2 1) 1 1 1 1) 1) (\lambda\lambda 2 (2 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://docs.google.com/document/d/1xlzaEQGarqnCocf4R2UWfqE3ck8YF_P32CmYxGXLhAI/edit?tab=t.0 Patcail]&lt;br /&gt;
|-||||||-&lt;br /&gt;
|201&lt;br /&gt;
| &amp;gt; q(5)&lt;br /&gt;
|too large to show&lt;br /&gt;
|&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/laver.lam JT &amp;amp; BF &amp;amp; 50_ft_lock]&lt;br /&gt;
|-||||||-&lt;br /&gt;
|331&lt;br /&gt;
| lim(BMS)&lt;br /&gt;
|too large to show&lt;br /&gt;
|&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/bms.lam Patcail &amp;amp; JT &amp;amp; 50_ft_lock]&lt;br /&gt;
|-||||||-&lt;br /&gt;
|1850&lt;br /&gt;
|&amp;gt; Loader&#039;s number&lt;br /&gt;
|too large to show&lt;br /&gt;
|&lt;br /&gt;
|[https://codegolf.stackexchange.com/questions/176966/golf-a-number-bigger-than-loaders-number/274634#274634 JT]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Oracle Busy Beaver ==&lt;br /&gt;
While BBλ grows uncomputably fast, one can define functions that grow much faster.&lt;br /&gt;
&lt;br /&gt;
Let&#039;s define a higher order busy beaver function BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; by providing oracle access to BBλ.&lt;br /&gt;
&lt;br /&gt;
This is done by enriching the set of terms and possible reduction steps considered in the BB definition.&lt;br /&gt;
&lt;br /&gt;
A 1-closed term is a term in de Bruijn notation that is closed with 1 additional lambda in front. Any variable bound to that lambda is a free variable &#039;&#039;&#039;f&#039;&#039;&#039; in the term.&lt;br /&gt;
&lt;br /&gt;
An oracle reduction step reduces &#039;&#039;&#039;f&#039;&#039;&#039; t, where t is a closed normal form of size s, to Church numeral BBλ(s).&lt;br /&gt;
&lt;br /&gt;
Note that this is almost identical to the oracle steps in Barendregt and Klop&#039;s &amp;quot;Applications of infinitary lambda calculus&amp;quot;, except that they require t itself to be a church numeral. Allowing arbitrary closed t makes oracle steps more widely applicable while aligning with BBλ&#039;s focus on term sizes.&lt;br /&gt;
&lt;br /&gt;
Now let BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; be the maximum beta/oracle normal form size of any 1-closed lambda term of size n, or 0 if no 1-closed term of size n exists. This appears as sequence [[oeis:A385712|A385712]]  in the OEIS.&lt;br /&gt;
&lt;br /&gt;
The following table shows values of BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; up to 22 plus a lower bound for 28, with larger values expressed in terms of function &amp;lt;math&amp;gt;f(n) = 6 + 5 \times BB \lambda(n)&amp;lt;/math&amp;gt;: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!champion&lt;br /&gt;
!BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;math&amp;gt;1&amp;lt;/math&amp;gt;&lt;br /&gt;
|1&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
|5&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda \lambda 1&amp;lt;/math&amp;gt;&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda \lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
|7&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(4) = 26&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;math&amp;gt;\lambda \lambda 2&amp;lt;/math&amp;gt;&lt;br /&gt;
|9&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(6) = 36&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(7) = 41&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(4) = 266&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(9) = 51&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda \lambda 1))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(6) = f(36) = 25 \times 2^{2^{2^{3}}}+36 &amp;gt; 2.85 \times 10^{78}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda \lambda 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(7) = f(41) \geq 25 \times 3^{3^{85}}+36 &amp;gt; 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (1 (\lambda 1)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{3}(4) = f(266)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda \lambda \lambda 2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^2(9) = f(51)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda 1) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^4(4) &amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|19&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (1 (\lambda \lambda 2)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^3(7)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 1) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^6(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda \lambda 2) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^7(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (1 (\lambda 1)) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{52}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;math&amp;gt;1 (\lambda 1) 1 (\lambda 1) 1 (\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge f^{BB \lambda(f^3(4))}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|29&lt;br /&gt;
|&amp;lt;math&amp;gt;1(\lambda 1)(\lambda 1 2 1)(\lambda 1)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge f^{BB \lambda(f^{BB \lambda(f^4(4))+4}(4))+BB \lambda(f^4(4))+5}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
We can generalize BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; to BBλ&amp;lt;sub&amp;gt;α&amp;lt;/sub&amp;gt; for ordinals α by using oracle function BBλ&amp;lt;sub&amp;gt;α-1&amp;lt;/sub&amp;gt; for successor ordinal a, and oracle function (\n -&amp;gt; BBλ&amp;lt;sub&amp;gt;α[n]&amp;lt;/sub&amp;gt;(n)) for limit ordinal α, assuming well-defined fundamental sequences up to α. Because of limited oracle inputs, all oracle busy beavers have identical values up to n=11.&lt;br /&gt;
&lt;br /&gt;
== De Bruijn ==&lt;br /&gt;
We can use De Bruijn index instead of binary to evaluate lambda calculus size. To get the size of an expression, convert it into De Bruijn index then count the number of lambdas / backslashes and numbers. By example, &amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;  is size 8 because it has 3 backslashes and 5 numbers.&lt;br /&gt;
&lt;br /&gt;
For n &amp;lt; 7, BBλ_db(n) = n is trivial and can be achieved via picking any size n term already in normal form, like BBλ(m) for m ≤ 20.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!BBλ_db(n)&lt;br /&gt;
!Value&lt;br /&gt;
!Champion&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|≥ 7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|≥ 16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[User:Azerty|Azerty]] &amp;amp; John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|≥ 68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge 3 \uparrow\uparrow 3 + 3 &amp;gt; 7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge 3 \uparrow\uparrow 4 + 3 &amp;gt; 10^{10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys and racheline&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega}\left(f_{5}\left(2\right)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\1 (1 2) (\\2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|50_ft_lock&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}(2 \uparrow\uparrow 6)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^\omega}(2 \uparrow\uparrow 18)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (1 (\\\1 3 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://tromp.github.io/blog/2026/01/28/largest-number-revised 50_ft_lock]&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{\omega+2}}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\zeta_0}(15)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}(12)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}(f_{\omega^{\omega+2}}(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega+1)}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* https://oeis.org/A333479&lt;br /&gt;
* [https://tromp.github.io/blog/2026/01/28/largest-number-revised The largest number representable in 64 bits]. 28 Jan 2026. John Tromp.&lt;br /&gt;
* [https://gist.github.com/tromp/86b3184f852f65bfb814e3ab0987d861 Binary Lambda Calculus]. John Tromp.&lt;br /&gt;
* https://github.com/tromp/AIT/tree/master/BB&lt;br /&gt;
[[category:Functions]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=Brainfuck&amp;diff=6181</id>
		<title>Brainfuck</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=Brainfuck&amp;diff=6181"/>
		<updated>2026-02-11T07:58:05Z</updated>

		<summary type="html">&lt;p&gt;Azerty: Added some informations about how bf works.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Brainfuck is a Turing complete language invented by Urban Muller.&lt;br /&gt;
&lt;br /&gt;
Brainfuck operates on an array of memory cells, each initially set to zero. In the original implementation, the array was 30,000 cells long and each cell values would be limited to numbers from 0 to 255, but this may not be part of the language specification. A braincuk program can work with different, and sometimes unbounded, array length and cells size.&lt;br /&gt;
&lt;br /&gt;
Like in a [[Turing machine]], there is a pointer, initially pointing to the first memory cell.&lt;br /&gt;
&lt;br /&gt;
Programs are composed of commands, represented with symbols. The commands are:&lt;br /&gt;
&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[page under construction]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Lambda_Calculus_Busy_Beaver&amp;diff=6138</id>
		<title>User:Azerty/Lambda Calculus Busy Beaver</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Lambda_Calculus_Busy_Beaver&amp;diff=6138"/>
		<updated>2026-02-07T17:34:48Z</updated>

		<summary type="html">&lt;p&gt;Azerty: Created page with &amp;quot;We can use De Bruijn index instead of binary to evaluate lambda calculus size. To get the size of an expression, convert it into De Bruijn index then count the number of lambdas / backslashes and numbers. By example, &amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;  is size 8 because it has 3 backslashes and 5 numbers.  For n ≤ 7, BBλ_db(n) = n is trivial and can be achieved via picking any size n term already in normal form, like BBλ(m) for m ≤ 20. {| class=&amp;quot;wikitable&amp;quot; !BBλ_db(n)...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We can use De Bruijn index instead of binary to evaluate lambda calculus size. To get the size of an expression, convert it into De Bruijn index then count the number of lambdas / backslashes and numbers. By example, &amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;  is size 8 because it has 3 backslashes and 5 numbers.&lt;br /&gt;
&lt;br /&gt;
For n ≤ 7, BBλ_db(n) = n is trivial and can be achieved via picking any size n term already in normal form, like BBλ(m) for m ≤ 20.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!BBλ_db(n)&lt;br /&gt;
!Value&lt;br /&gt;
!Champion&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|≥ 16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[User:Azerty|Azerty]] &amp;amp; John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|≥ 68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge 3 \uparrow\uparrow 3 + 3 &amp;gt; 7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge 3 \uparrow\uparrow 4 + 3 &amp;gt; 10^{10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys and racheline&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}(2 \uparrow\uparrow 6)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^\omega}(2 \uparrow\uparrow 18)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (1 (\\\1 3 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://tromp.github.io/blog/2026/01/28/largest-number-revised 50_ft_lock]&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{\omega+2}}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\zeta_0}(15)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}(12)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}(f_{\omega^{\omega+2}}(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega+1)}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|}&lt;br /&gt;
Most champions are currently taken from binary BBλ.&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=6123</id>
		<title>Busy Beaver for lambda calculus</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=6123"/>
		<updated>2026-02-06T07:40:49Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* De Bruijn */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Busy Beaver for lambda calculus&#039;&#039;&#039; (&#039;&#039;&#039;BBλ&#039;&#039;&#039;) is a variation of the [[Busy Beaver]] problem for [https://en.wikipedia.org/wiki/Lambda_calculus lambda calculus] invented by John Tromp. BBλ(n) = the maximum normal form size of any closed lambda term of size n. Like the traditional Busy Beaver functions, it is uncomputable (and in fact grows faster than any computable function). If you are not familiar with lambda calculus and beta-reduction, it is recommended to start with that article.&lt;br /&gt;
&lt;br /&gt;
Size is measured in bits using [https://tromp.github.io/cl/Binary_lambda_calculus.html Binary Lambda Calculus] which is a binary prefix-free encoding for all closed lambda calculus terms.&lt;br /&gt;
&lt;br /&gt;
== Analogy to Turing machines ==&lt;br /&gt;
We evaluate terms by applying &#039;&#039;beta-reductions&#039;&#039; until they reach a &#039;&#039;normal form&#039;&#039;. As an analogy to [[Turing machines]]:&lt;br /&gt;
* &#039;&#039;Lambda terms&#039;&#039; are like TM configurations (tape + state + position).&lt;br /&gt;
* Applying &#039;&#039;beta-reduction&#039;&#039; to a term is like taking a TM step.&lt;br /&gt;
* A term is in &#039;&#039;normal form&#039;&#039; if no beta-reductions can be applied. This is like saying the term has halted.&lt;br /&gt;
* A term may or may not be reducible to a normal form. If it is, this is like saying the term halts.&lt;br /&gt;
* Determining whether a term is reducible to a normal form is an undecidable problem equivalent to the halting problem.&lt;br /&gt;
&lt;br /&gt;
Note: That unlike for Turing machines, evaluating lambda terms is non-deterministic. Specifically, there may be multiple beta-reductions possible in a given term. However, if a term can be reduced to a normal form, that normal form is unique. It is not possible to reduce the original term to any different normal form. A term is &#039;&#039;&#039;strongly normalizing&#039;&#039;&#039; if any choice of beta-reductions will lead to this normal form and &#039;&#039;&#039;weakly normalizing&#039;&#039;&#039; if there exist divergent reduction paths which never reach the normal form.&lt;br /&gt;
&lt;br /&gt;
== Proof of Uncomputability ==&lt;br /&gt;
The proof that BBλ(n) is uncomputable is very similar to Radó&#039;s original proof that Σ(n) is uncomputable. Proof by contradiction:&lt;br /&gt;
&lt;br /&gt;
Assume BBλ is computable and so there exists a term &#039;&#039;f&#039;&#039; which computes it on [[wikipedia:Church_encoding|Church numerals]]. In other words: for all &amp;lt;math&amp;gt;n \in \N&amp;lt;/math&amp;gt;: &amp;lt;math&amp;gt;(f \; C_n)&amp;lt;/math&amp;gt; beta reduces to normal form &amp;lt;math&amp;gt;C_{BB\lambda(n)}&amp;lt;/math&amp;gt; (where &amp;lt;math&amp;gt;C_n&amp;lt;/math&amp;gt; denotes the Church numeral &#039;&#039;n&#039;&#039;). Denote the binary lambda encoded size of &#039;&#039;f&#039;&#039; as &#039;&#039;k&#039;&#039;. Consider the term &amp;lt;math&amp;gt;f \; (C_2 \; C_n)&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;2+k+2+(5\times2+6)+(5n+6) = 5n + k + 26&amp;lt;/math&amp;gt; bits. This term reduces to &amp;lt;math&amp;gt;C_{BB\lambda(n^2)}&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6&amp;lt;/math&amp;gt; bits. But for sufficiently large n, &amp;lt;math&amp;gt;n^2 &amp;gt; 5n + k + 26&amp;lt;/math&amp;gt; and so  &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6 &amp;gt; BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;. But this is a contradiction, we&#039;ve found a &amp;lt;math&amp;gt;5n + k + 26&amp;lt;/math&amp;gt; bit term which reduces to a normal form larger than &amp;lt;math&amp;gt;BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Thus BBλ(n) is uncomputable. A variation of this argument shows that BBλ(n) eventually dominates all computable functions.&lt;br /&gt;
&lt;br /&gt;
== Binary Lambda Encoding ==&lt;br /&gt;
A lambda term using [https://en.wikipedia.org/wiki/De_Bruijn_indices De Bruijn indexes] is defined inductively as:&lt;br /&gt;
* Variables: For any &amp;lt;math&amp;gt;n \in \mathbb{Z}^+&amp;lt;/math&amp;gt;, Var(&#039;&#039;n&#039;&#039;) is a term. It represents a variable bound by the lambda expression &#039;&#039;n&#039;&#039; above this one (the De Bruijn index). It is typically written simply as &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Lambdas: For any term &#039;&#039;T&#039;&#039;, Lam(&#039;&#039;T&#039;&#039;) is a term. It represents a unary function with function body &#039;&#039;T&#039;&#039;. It is typically written &amp;lt;math&amp;gt;\lambda T&amp;lt;/math&amp;gt; or &amp;lt;code&amp;gt;\T&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Applications: For any terms &#039;&#039;T, U&#039;&#039;, App(&#039;&#039;T, U&#039;&#039;) is a term. It represents applying function &#039;&#039;T&#039;&#039; to argument &#039;&#039;U&#039;&#039;. It is typically written &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can think of this as a tree where each variable is a leaf, a lambda is a node with one child and applications are nodes with 2 children. A term is &#039;&#039;&#039;closed&#039;&#039;&#039; if every variable is bound. In other words, for every Var(&#039;&#039;n&#039;&#039;) leaf node, there exists &#039;&#039;n&#039;&#039; Lam() nodes above it in the tree of the term.&lt;br /&gt;
&lt;br /&gt;
Encoding (&#039;&#039;blc()&#039;&#039;) is defined recursively:&lt;br /&gt;
&amp;lt;math display=&amp;quot;block&amp;quot;&amp;gt;\begin{array}{l}&lt;br /&gt;
  blc(Var(n)) &amp;amp; = &amp;amp; 1^n 0 \\&lt;br /&gt;
  blc(Lam(T)) &amp;amp; = &amp;amp; 00 \; blc(T) \\&lt;br /&gt;
  blc(App(T, U)) &amp;amp; = &amp;amp; 01 \; blc(T) \; blc(U) \\&lt;br /&gt;
\end{array}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For example, the [https://en.wikipedia.org/wiki/Church_encoding#Church_numerals Church numeral] 2: &amp;lt;math&amp;gt;\lambda f x. (f \; (f \; x))&amp;lt;/math&amp;gt; =  &amp;lt;code&amp;gt;\\(2 (2 1))&amp;lt;/code&amp;gt; = &amp;lt;code&amp;gt;Lam(Lam(App(Var(2), App(Var(2), Var(1))))&amp;lt;/code&amp;gt; is encoded as &amp;lt;code&amp;gt;00 00 01 110 01 110 10&amp;lt;/code&amp;gt; or simply &amp;lt;code&amp;gt;0000011100111010&amp;lt;/code&amp;gt; (spaces are not part of the encoding, only used for demonstration purposes) and thus has size 16 bits.&lt;br /&gt;
&lt;br /&gt;
== Text Encoding conventions ==&lt;br /&gt;
For human readability, a text encoding and set of conventions is used in this article. As described earlier we encode a lambda term as:&lt;br /&gt;
* Var(&#039;&#039;n&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;&lt;br /&gt;
* Lam(&#039;&#039;T&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(\T)&amp;lt;/code&amp;gt;&lt;br /&gt;
* App(&#039;&#039;T, U&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
However, parentheses are also dropped in certain cases by convention:&lt;br /&gt;
* The outermost parentheses are dropped: &amp;lt;code&amp;gt;Lam(1)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;App(1, 2)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped immediately inside a Lam: &amp;lt;code&amp;gt;Lam(Lam(1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;Lam(App(1, 1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1 1&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped in nested Apps using left associativity: &amp;lt;code&amp;gt;App(App(1, 2), 3)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2 3&amp;lt;/code&amp;gt;. (Note: parentheses are still required for &amp;lt;code&amp;gt;App(1, App(2, 3))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 (2 3)&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
This is the convention used in John Tromp&#039;s code and so is used here for consistency.&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
There are no closed lambda terms of size 0, 1, 2, 3 or 5 and so BBλ(n) is not defined for those values. The smallest closed lambda term is &amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt; which has size 4.&lt;br /&gt;
&lt;br /&gt;
For the rest of n ≤ 20: BBλ(n) = n is trivial and can be achieved via picking any n bit term already in normal form. For example &amp;lt;code&amp;gt;\\...\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;\\...\2&amp;lt;/code&amp;gt; with k lambdas has size 2k+2 and 2k+3 respectively (for k ≥ 1 and k ≥ 2 respectively).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!BBλ(n)&lt;br /&gt;
!Champion&lt;br /&gt;
!Normal form&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|21 || = 22 || &amp;lt;code&amp;gt;\(\1 1) (1 (\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;\(1 (\2)) (1 (\2))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|22 || = 24 || &amp;lt;code&amp;gt;\(\1 1 1) (1 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;\(1 1) (1 1) (1 1)&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|23 || = 26 || &amp;lt;code&amp;gt;\(\1 1) (1 (\\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;\(1 (\\2)) (1 (\\2))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|24 || = 30 || &amp;lt;code&amp;gt;\(\1 1 1) (1 (\1))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;\(1 (\1)) (1 (\1)) (1 (\1))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|25 || = 42 || &amp;lt;code&amp;gt;\(\1 1) (\1 (2 1))&amp;lt;/code&amp;gt; &lt;br /&gt;
| &amp;lt;code&amp;gt;\1 (\1 (2 1)) (1 (1 (\1 (2 1))))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|26 || = 52 || &amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt; &lt;br /&gt;
| &amp;lt;code&amp;gt;\\2 (\\2 (1 2)) (1 (2 (\\2 (1 2))))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|27 || = 44 || &amp;lt;code&amp;gt;\\(\1 1) (\1 (2 1))&amp;lt;/code&amp;gt; &lt;br /&gt;
| &amp;lt;code&amp;gt;\\1 (\1 (2 1)) (1 (1 (\1 (2 1))))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|28 || = 58 || &amp;lt;code&amp;gt;\(\1 1) (\1 (2 (\2))))&amp;lt;/code&amp;gt; &lt;br /&gt;
| &amp;lt;code&amp;gt;\1 (\\1 (3 (\2))) (1 (\2 (\\1 (4 (\2)))))&amp;lt;/code&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
| 29 || = 223|| &amp;lt;code&amp;gt;\(\1 1) (\1 (1 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;pre&amp;gt;&lt;br /&gt;
\B (B (1 B))&lt;br /&gt;
  where:&lt;br /&gt;
    B = (A (A (1 A)))&lt;br /&gt;
    A = (1 (\1 (1 (2 1))))&lt;br /&gt;
&amp;lt;/pre&amp;gt;||John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|30&lt;br /&gt;
|= 160&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;pre&amp;gt;&lt;br /&gt;
\\2 B A (1 (2 B A))&lt;br /&gt;
  where:&lt;br /&gt;
    B = (\\2 A (1 (2 A)))&lt;br /&gt;
    A = (\\2 (1 2))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|31&lt;br /&gt;
|= 267&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;pre&amp;gt;&lt;br /&gt;
\\2 A (2 A (C (2 A)))&lt;br /&gt;
  where:&lt;br /&gt;
    C = (2 A (2 A (1 B (2 A))))&lt;br /&gt;
    B = (\3 A (3 A (1 (3 A))))&lt;br /&gt;
    A = (\\2 (2 (1 2)))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|32&lt;br /&gt;
|= 298&lt;br /&gt;
|&amp;lt;code&amp;gt;\(\1 1) (\1 (1 (2 (\2))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|33&lt;br /&gt;
|= 1812&lt;br /&gt;
|&amp;lt;code&amp;gt;\(\1 1) (\1 (1 (1 (2 1))))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;pre&amp;gt;&lt;br /&gt;
\C (C (C (1 C)))&lt;br /&gt;
  where:&lt;br /&gt;
    C = (B (B (B (1 B)))&lt;br /&gt;
    B = (A (A (A (1 A)))&lt;br /&gt;
    A = (1 (\1 (1 (1 (2 1)))))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|34 || &amp;lt;math&amp;gt;= \ 5 \left(2^{2^{2^2}}\right) + 6 = 327\,686&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^2}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|35 || &amp;lt;math&amp;gt;= 5 \left(3^{3^3}\right) + 6 &amp;gt; 3.8 \times 10^{13}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt; &lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^3})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|36 || &amp;lt;math&amp;gt;= 5 \left(2^{2^{2^3}}\right) + 6 &amp;gt; 5.7 \times 10^{77}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\2 (2 1))))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^3}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|37 || &amp;lt;math&amp;gt; = BB\lambda(35)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;code&amp;gt;\(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x. C(3^{3^3})&amp;lt;/math&amp;gt;||mxdys, tromp, dyuan, sligocki&lt;br /&gt;
|-&lt;br /&gt;
|38 || &amp;lt;math&amp;gt;\ge 5 \left(2^{2^{2^{2^2}}}\right) + 6 &amp;gt; 10^{10^4}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^{2^2}}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|39 || &amp;lt;math&amp;gt;\ge 5 \left(3^{3^{3^3}}\right) + 6 &amp;gt; 10^{10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt; &lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^{3^3}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|40 || &amp;lt;math&amp;gt; &amp;gt; (2\uparrow\uparrow)^{15} 33 &amp;gt; 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{15} 33&amp;lt;/math&amp;gt;|| mxdys and racheline&lt;br /&gt;
|-&lt;br /&gt;
|41 || &amp;lt;math&amp;gt;\ge 5 \left(3^{3^{85}}\right) + 6 &amp;gt; 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;code&amp;gt;(\1 (\1 1) 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^{85}})&amp;lt;/math&amp;gt;||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|42 ||&amp;lt;math&amp;gt; \ge BB\lambda(40)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;\(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|43 ||&amp;lt;math&amp;gt; &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;(\lambda y.y\;C(2)\;T(n))&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|44 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt; &lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|45 || &amp;lt;math&amp;gt; \ge BB\lambda(43)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;\(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|46 || &amp;lt;math&amp;gt; \ge BB\lambda(44)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;code&amp;gt;\(\1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|47 || &lt;br /&gt;
|  &lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|48 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt; &lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
 &amp;lt;math&amp;gt;&amp;gt; \text{Graham&#039;s number}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;C(N) \text{ for } N \approx f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|61&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{2 \uparrow\uparrow 18-1}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (1 (\\\1 3 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;C(N) \text{ for } N \approx f_{\omega^{2 \uparrow\uparrow 18-1}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://tromp.github.io/blog/2026/01/28/largest-number-revised 50_ft_lock]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|86&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{\omega^{2}}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|90&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\zeta_0}\left(15\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|94&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(12\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
 &amp;lt;math&amp;gt;&amp;gt; \text{TREE}(G64)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|96&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(f_{\omega^{\omega^{2}}}\left(2\right)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|100&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)+1}\left(4\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|331&lt;br /&gt;
| lim(BMS)&lt;br /&gt;
|&amp;lt;code&amp;gt;too large to show&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/bms.lam Patcail &amp;amp; John Tromp &amp;amp; 50_ft_lock]&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|1850&lt;br /&gt;
|&amp;gt; Loader&#039;s number&lt;br /&gt;
|&amp;lt;code&amp;gt;too large to show&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://codegolf.stackexchange.com/questions/176966/golf-a-number-bigger-than-loaders-number/274634#274634 John Tromp]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Where &amp;lt;math&amp;gt;C(n)&amp;lt;/math&amp;gt; represents the Church numeral &#039;&#039;n&#039;&#039; (&amp;lt;math&amp;gt;\lambda f x. f^n(x)&amp;lt;/math&amp;gt;) written as &amp;lt;code&amp;gt;\\2 (2 ... (2 1)...)&amp;lt;/code&amp;gt; with &#039;&#039;n&#039;&#039; 2s in this text representation.&lt;br /&gt;
&lt;br /&gt;
== Oracle Busy Beaver ==&lt;br /&gt;
While BBλ grows uncomputably fast, one can define functions that grow much faster.&lt;br /&gt;
&lt;br /&gt;
Let&#039;s define a higher order busy beaver function BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; by providing oracle access to BBλ.&lt;br /&gt;
&lt;br /&gt;
This is done by enriching the set of terms and possible reduction steps considered in the BB definition.&lt;br /&gt;
&lt;br /&gt;
A 1-closed term is a term in de Bruijn notation that is closed with 1 additional lambda in front. Any variable bound to that lambda is a free variable &#039;&#039;&#039;f&#039;&#039;&#039; in the term.&lt;br /&gt;
&lt;br /&gt;
An oracle reduction step reduces &#039;&#039;&#039;f&#039;&#039;&#039; t, where t is a closed normal form of size s, to Church numeral BBλ(s).&lt;br /&gt;
&lt;br /&gt;
Note that this is almost identical to the oracle steps in Barendregt and Klop&#039;s &amp;quot;Applications of infinitary lambda calculus&amp;quot;, except that they require t itself to be a church numeral. Allowing arbitrary closed t makes oracle steps more widely applicable while aligning with BBλ&#039;s focus on term sizes.&lt;br /&gt;
&lt;br /&gt;
Now let BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; be the maximum beta/oracle normal form size of any 1-closed lambda term of size n, or 0 if no 1-closed term of size n exists. This appears as sequence [[oeis:A385712|A385712]]  in the OEIS.&lt;br /&gt;
&lt;br /&gt;
The following table shows values of BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; up to 22 plus a lower bound for 28, with larger values expressed in terms of function &amp;lt;math&amp;gt;f(n) = 6 + 5 \times BB \lambda(n)&amp;lt;/math&amp;gt;: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!champion&lt;br /&gt;
!BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;1&amp;lt;/code&amp;gt;&lt;br /&gt;
|1&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt;&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;\2&amp;lt;/code&amp;gt;&lt;br /&gt;
|5&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;\\1&amp;lt;/code&amp;gt;&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\\2&amp;lt;/code&amp;gt;&lt;br /&gt;
|7&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(4) = 26&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;\\2&amp;lt;/code&amp;gt;&lt;br /&gt;
|9&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(6) = 36&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\2)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(7) = 41&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(4) = 266&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\2)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(9) = 51&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\\1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(6) = f(36) = 25 \times 2^{2^{2^{3}}}+36 &amp;gt; 2.85 \times 10^{78}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(7) = f(41) \geq 25 \times 3^{3^{85}}+36 &amp;gt; 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (1 (\1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{3}(4) = f(266)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\\\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^2(9) = f(51)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\1) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^4(4) &amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|19&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (1 (\\2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^3(7)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\1) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^6(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\2) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^7(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\1)) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{52}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\1) 1 (\1) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge f^{BB \lambda(f^3(4))}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
We can generalize BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; to BBλ&amp;lt;sub&amp;gt;α&amp;lt;/sub&amp;gt; for ordinals α by using oracle function BBλ&amp;lt;sub&amp;gt;α-1&amp;lt;/sub&amp;gt; for successor ordinal a, and oracle function (\n -&amp;gt; BBλ&amp;lt;sub&amp;gt;α[n]&amp;lt;/sub&amp;gt;(n)) for limit ordinal α, assuming well-defined fundamental sequences up to α. Because of limited oracle inputs, all oracle busy beavers have identical values up to n=11.&lt;br /&gt;
&lt;br /&gt;
== De Bruijn ==&lt;br /&gt;
We can use De Bruijn index instead of binary to evaluate lambda calculus size. To get the size of an expression, convert it into De Bruijn index then count the number of lambdas / backslashes and numbers. By example, &amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;  is size 8 because it has 3 backslashes and 5 numbers.&lt;br /&gt;
&lt;br /&gt;
For n &amp;lt; 7, BBλ_db(n) = n is trivial and can be achieved via picking any size n term already in normal form, like BBλ(m) for m ≤ 20.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!BBλ_db(n)&lt;br /&gt;
!Value&lt;br /&gt;
!Champion&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|≥ 7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|≥ 16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[User:Azerty|Azerty]] &amp;amp; John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|≥ 68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge 3 \uparrow\uparrow 3 + 3 &amp;gt; 7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge 3 \uparrow\uparrow 4 + 3 &amp;gt; 10^{10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys and racheline&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}(2 \uparrow\uparrow 6)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^\omega}(2 \uparrow\uparrow 18)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (1 (\\\1 3 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://tromp.github.io/blog/2026/01/28/largest-number-revised 50_ft_lock]&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{\omega+2}}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\zeta_0}(15)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}(12)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}(f_{\omega^{\omega+2}}(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega+1)}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* https://oeis.org/A333479&lt;br /&gt;
* [https://tromp.github.io/blog/2023/11/24/largest-number The largest number representable in 64 bits]. 24 Nov 2023. John Tromp.&lt;br /&gt;
* [https://tromp.github.io/cl/Binary_lambda_calculus.html Binary Lambda Calculus]. John Tromp.&lt;br /&gt;
* https://github.com/tromp/AIT/tree/master/BB&lt;br /&gt;
[[category:Functions]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=6122</id>
		<title>Busy Beaver for lambda calculus</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=6122"/>
		<updated>2026-02-05T19:57:34Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* De Bruijn */ Added values for n &amp;lt; 7&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Busy Beaver for lambda calculus&#039;&#039;&#039; (&#039;&#039;&#039;BBλ&#039;&#039;&#039;) is a variation of the [[Busy Beaver]] problem for [https://en.wikipedia.org/wiki/Lambda_calculus lambda calculus] invented by John Tromp. BBλ(n) = the maximum normal form size of any closed lambda term of size n. Like the traditional Busy Beaver functions, it is uncomputable (and in fact grows faster than any computable function). If you are not familiar with lambda calculus and beta-reduction, it is recommended to start with that article.&lt;br /&gt;
&lt;br /&gt;
Size is measured in bits using [https://tromp.github.io/cl/Binary_lambda_calculus.html Binary Lambda Calculus] which is a binary prefix-free encoding for all closed lambda calculus terms.&lt;br /&gt;
&lt;br /&gt;
== Analogy to Turing machines ==&lt;br /&gt;
We evaluate terms by applying &#039;&#039;beta-reductions&#039;&#039; until they reach a &#039;&#039;normal form&#039;&#039;. As an analogy to [[Turing machines]]:&lt;br /&gt;
* &#039;&#039;Lambda terms&#039;&#039; are like TM configurations (tape + state + position).&lt;br /&gt;
* Applying &#039;&#039;beta-reduction&#039;&#039; to a term is like taking a TM step.&lt;br /&gt;
* A term is in &#039;&#039;normal form&#039;&#039; if no beta-reductions can be applied. This is like saying the term has halted.&lt;br /&gt;
* A term may or may not be reducible to a normal form. If it is, this is like saying the term halts.&lt;br /&gt;
* Determining whether a term is reducible to a normal form is an undecidable problem equivalent to the halting problem.&lt;br /&gt;
&lt;br /&gt;
Note: That unlike for Turing machines, evaluating lambda terms is non-deterministic. Specifically, there may be multiple beta-reductions possible in a given term. However, if a term can be reduced to a normal form, that normal form is unique. It is not possible to reduce the original term to any different normal form. A term is &#039;&#039;&#039;strongly normalizing&#039;&#039;&#039; if any choice of beta-reductions will lead to this normal form and &#039;&#039;&#039;weakly normalizing&#039;&#039;&#039; if there exist divergent reduction paths which never reach the normal form.&lt;br /&gt;
&lt;br /&gt;
== Proof of Uncomputability ==&lt;br /&gt;
The proof that BBλ(n) is uncomputable is very similar to Radó&#039;s original proof that Σ(n) is uncomputable. Proof by contradiction:&lt;br /&gt;
&lt;br /&gt;
Assume BBλ is computable and so there exists a term &#039;&#039;f&#039;&#039; which computes it on [[wikipedia:Church_encoding|Church numerals]]. In other words: for all &amp;lt;math&amp;gt;n \in \N&amp;lt;/math&amp;gt;: &amp;lt;math&amp;gt;(f \; C_n)&amp;lt;/math&amp;gt; beta reduces to normal form &amp;lt;math&amp;gt;C_{BB\lambda(n)}&amp;lt;/math&amp;gt; (where &amp;lt;math&amp;gt;C_n&amp;lt;/math&amp;gt; denotes the Church numeral &#039;&#039;n&#039;&#039;). Denote the binary lambda encoded size of &#039;&#039;f&#039;&#039; as &#039;&#039;k&#039;&#039;. Consider the term &amp;lt;math&amp;gt;f \; (C_2 \; C_n)&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;2+k+2+(5\times2+6)+(5n+6) = 5n + k + 26&amp;lt;/math&amp;gt; bits. This term reduces to &amp;lt;math&amp;gt;C_{BB\lambda(n^2)}&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6&amp;lt;/math&amp;gt; bits. But for sufficiently large n, &amp;lt;math&amp;gt;n^2 &amp;gt; 5n + k + 26&amp;lt;/math&amp;gt; and so  &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6 &amp;gt; BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;. But this is a contradiction, we&#039;ve found a &amp;lt;math&amp;gt;5n + k + 26&amp;lt;/math&amp;gt; bit term which reduces to a normal form larger than &amp;lt;math&amp;gt;BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Thus BBλ(n) is uncomputable. A variation of this argument shows that BBλ(n) eventually dominates all computable functions.&lt;br /&gt;
&lt;br /&gt;
== Binary Lambda Encoding ==&lt;br /&gt;
A lambda term using [https://en.wikipedia.org/wiki/De_Bruijn_indices De Bruijn indexes] is defined inductively as:&lt;br /&gt;
* Variables: For any &amp;lt;math&amp;gt;n \in \mathbb{Z}^+&amp;lt;/math&amp;gt;, Var(&#039;&#039;n&#039;&#039;) is a term. It represents a variable bound by the lambda expression &#039;&#039;n&#039;&#039; above this one (the De Bruijn index). It is typically written simply as &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Lambdas: For any term &#039;&#039;T&#039;&#039;, Lam(&#039;&#039;T&#039;&#039;) is a term. It represents a unary function with function body &#039;&#039;T&#039;&#039;. It is typically written &amp;lt;math&amp;gt;\lambda T&amp;lt;/math&amp;gt; or &amp;lt;code&amp;gt;\T&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Applications: For any terms &#039;&#039;T, U&#039;&#039;, App(&#039;&#039;T, U&#039;&#039;) is a term. It represents applying function &#039;&#039;T&#039;&#039; to argument &#039;&#039;U&#039;&#039;. It is typically written &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can think of this as a tree where each variable is a leaf, a lambda is a node with one child and applications are nodes with 2 children. A term is &#039;&#039;&#039;closed&#039;&#039;&#039; if every variable is bound. In other words, for every Var(&#039;&#039;n&#039;&#039;) leaf node, there exists &#039;&#039;n&#039;&#039; Lam() nodes above it in the tree of the term.&lt;br /&gt;
&lt;br /&gt;
Encoding (&#039;&#039;blc()&#039;&#039;) is defined recursively:&lt;br /&gt;
&amp;lt;math display=&amp;quot;block&amp;quot;&amp;gt;\begin{array}{l}&lt;br /&gt;
  blc(Var(n)) &amp;amp; = &amp;amp; 1^n 0 \\&lt;br /&gt;
  blc(Lam(T)) &amp;amp; = &amp;amp; 00 \; blc(T) \\&lt;br /&gt;
  blc(App(T, U)) &amp;amp; = &amp;amp; 01 \; blc(T) \; blc(U) \\&lt;br /&gt;
\end{array}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For example, the [https://en.wikipedia.org/wiki/Church_encoding#Church_numerals Church numeral] 2: &amp;lt;math&amp;gt;\lambda f x. (f \; (f \; x))&amp;lt;/math&amp;gt; =  &amp;lt;code&amp;gt;\\(2 (2 1))&amp;lt;/code&amp;gt; = &amp;lt;code&amp;gt;Lam(Lam(App(Var(2), App(Var(2), Var(1))))&amp;lt;/code&amp;gt; is encoded as &amp;lt;code&amp;gt;00 00 01 110 01 110 10&amp;lt;/code&amp;gt; or simply &amp;lt;code&amp;gt;0000011100111010&amp;lt;/code&amp;gt; (spaces are not part of the encoding, only used for demonstration purposes) and thus has size 16 bits.&lt;br /&gt;
&lt;br /&gt;
== Text Encoding conventions ==&lt;br /&gt;
For human readability, a text encoding and set of conventions is used in this article. As described earlier we encode a lambda term as:&lt;br /&gt;
* Var(&#039;&#039;n&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;&lt;br /&gt;
* Lam(&#039;&#039;T&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(\T)&amp;lt;/code&amp;gt;&lt;br /&gt;
* App(&#039;&#039;T, U&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
However, parentheses are also dropped in certain cases by convention:&lt;br /&gt;
* The outermost parentheses are dropped: &amp;lt;code&amp;gt;Lam(1)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;App(1, 2)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped immediately inside a Lam: &amp;lt;code&amp;gt;Lam(Lam(1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;Lam(App(1, 1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1 1&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped in nested Apps using left associativity: &amp;lt;code&amp;gt;App(App(1, 2), 3)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2 3&amp;lt;/code&amp;gt;. (Note: parentheses are still required for &amp;lt;code&amp;gt;App(1, App(2, 3))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 (2 3)&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
This is the convention used in John Tromp&#039;s code and so is used here for consistency.&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
There are no closed lambda terms of size 0, 1, 2, 3 or 5 and so BBλ(n) is not defined for those values. The smallest closed lambda term is &amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt; which has size 4.&lt;br /&gt;
&lt;br /&gt;
For the rest of n ≤ 20: BBλ(n) = n is trivial and can be achieved via picking any n bit term already in normal form. For example &amp;lt;code&amp;gt;\\...\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;\\...\2&amp;lt;/code&amp;gt; with k lambdas has size 2k+2 and 2k+3 respectively (for k ≥ 1 and k ≥ 2 respectively).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!BBλ(n)&lt;br /&gt;
!Champion&lt;br /&gt;
!Normal form&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|21 || = 22 || &amp;lt;code&amp;gt;\(\1 1) (1 (\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;\(1 (\2)) (1 (\2))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|22 || = 24 || &amp;lt;code&amp;gt;\(\1 1 1) (1 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;\(1 1) (1 1) (1 1)&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|23 || = 26 || &amp;lt;code&amp;gt;\(\1 1) (1 (\\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;\(1 (\\2)) (1 (\\2))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|24 || = 30 || &amp;lt;code&amp;gt;\(\1 1 1) (1 (\1))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;\(1 (\1)) (1 (\1)) (1 (\1))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|25 || = 42 || &amp;lt;code&amp;gt;\(\1 1) (\1 (2 1))&amp;lt;/code&amp;gt; &lt;br /&gt;
| &amp;lt;code&amp;gt;\1 (\1 (2 1)) (1 (1 (\1 (2 1))))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|26 || = 52 || &amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt; &lt;br /&gt;
| &amp;lt;code&amp;gt;\\2 (\\2 (1 2)) (1 (2 (\\2 (1 2))))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|27 || = 44 || &amp;lt;code&amp;gt;\\(\1 1) (\1 (2 1))&amp;lt;/code&amp;gt; &lt;br /&gt;
| &amp;lt;code&amp;gt;\\1 (\1 (2 1)) (1 (1 (\1 (2 1))))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|28 || = 58 || &amp;lt;code&amp;gt;\(\1 1) (\1 (2 (\2))))&amp;lt;/code&amp;gt; &lt;br /&gt;
| &amp;lt;code&amp;gt;\1 (\\1 (3 (\2))) (1 (\2 (\\1 (4 (\2)))))&amp;lt;/code&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
| 29 || = 223|| &amp;lt;code&amp;gt;\(\1 1) (\1 (1 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;pre&amp;gt;&lt;br /&gt;
\B (B (1 B))&lt;br /&gt;
  where:&lt;br /&gt;
    B = (A (A (1 A)))&lt;br /&gt;
    A = (1 (\1 (1 (2 1))))&lt;br /&gt;
&amp;lt;/pre&amp;gt;||John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|30&lt;br /&gt;
|= 160&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;pre&amp;gt;&lt;br /&gt;
\\2 B A (1 (2 B A))&lt;br /&gt;
  where:&lt;br /&gt;
    B = (\\2 A (1 (2 A)))&lt;br /&gt;
    A = (\\2 (1 2))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|31&lt;br /&gt;
|= 267&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;pre&amp;gt;&lt;br /&gt;
\\2 A (2 A (C (2 A)))&lt;br /&gt;
  where:&lt;br /&gt;
    C = (2 A (2 A (1 B (2 A))))&lt;br /&gt;
    B = (\3 A (3 A (1 (3 A))))&lt;br /&gt;
    A = (\\2 (2 (1 2)))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|32&lt;br /&gt;
|= 298&lt;br /&gt;
|&amp;lt;code&amp;gt;\(\1 1) (\1 (1 (2 (\2))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|33&lt;br /&gt;
|= 1812&lt;br /&gt;
|&amp;lt;code&amp;gt;\(\1 1) (\1 (1 (1 (2 1))))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;pre&amp;gt;&lt;br /&gt;
\C (C (C (1 C)))&lt;br /&gt;
  where:&lt;br /&gt;
    C = (B (B (B (1 B)))&lt;br /&gt;
    B = (A (A (A (1 A)))&lt;br /&gt;
    A = (1 (\1 (1 (1 (2 1)))))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|34 || &amp;lt;math&amp;gt;= \ 5 \left(2^{2^{2^2}}\right) + 6 = 327\,686&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^2}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|35 || &amp;lt;math&amp;gt;= 5 \left(3^{3^3}\right) + 6 &amp;gt; 3.8 \times 10^{13}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt; &lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^3})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|36 || &amp;lt;math&amp;gt;= 5 \left(2^{2^{2^3}}\right) + 6 &amp;gt; 5.7 \times 10^{77}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\2 (2 1))))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^3}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|37 || &amp;lt;math&amp;gt; = BB\lambda(35)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;code&amp;gt;\(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x. C(3^{3^3})&amp;lt;/math&amp;gt;||mxdys, tromp, dyuan, sligocki&lt;br /&gt;
|-&lt;br /&gt;
|38 || &amp;lt;math&amp;gt;\ge 5 \left(2^{2^{2^{2^2}}}\right) + 6 &amp;gt; 10^{10^4}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(2^{2^{2^{2^2}}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|39 || &amp;lt;math&amp;gt;\ge 5 \left(3^{3^{3^3}}\right) + 6 &amp;gt; 10^{10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt; &lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^{3^3}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|40 || &amp;lt;math&amp;gt; &amp;gt; (2\uparrow\uparrow)^{15} 33 &amp;gt; 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{15} 33&amp;lt;/math&amp;gt;|| mxdys and racheline&lt;br /&gt;
|-&lt;br /&gt;
|41 || &amp;lt;math&amp;gt;\ge 5 \left(3^{3^{85}}\right) + 6 &amp;gt; 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;code&amp;gt;(\1 (\1 1) 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;C(3^{3^{85}})&amp;lt;/math&amp;gt;||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|42 ||&amp;lt;math&amp;gt; \ge BB\lambda(40)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;\(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|43 ||&amp;lt;math&amp;gt; &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;(\lambda y.y\;C(2)\;T(n))&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|44 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt; &lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|45 || &amp;lt;math&amp;gt; \ge BB\lambda(43)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;\(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|46 || &amp;lt;math&amp;gt; \ge BB\lambda(44)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;code&amp;gt;\(\1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|47 || &lt;br /&gt;
|  &lt;br /&gt;
| ||&lt;br /&gt;
|-&lt;br /&gt;
|48 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt; &lt;br /&gt;
| &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
 &amp;lt;math&amp;gt;&amp;gt; \text{Graham&#039;s number}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;C(N) \text{ for } N \approx f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|61&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{2 \uparrow\uparrow 18-1}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (1 (\\\1 3 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;C(N) \text{ for } N \approx f_{\omega^{2 \uparrow\uparrow 18-1}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://tromp.github.io/blog/2026/01/28/largest-number-revised 50_ft_lock]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|86&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{\omega^{2}}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|90&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\zeta_0}\left(15\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|94&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(12\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
 &amp;lt;math&amp;gt;&amp;gt; \text{TREE}(G64)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|96&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(f_{\omega^{\omega^{2}}}\left(2\right)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|100&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)+1}\left(4\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|331&lt;br /&gt;
| lim(BMS)&lt;br /&gt;
|&amp;lt;code&amp;gt;too large to show&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/bms.lam Patcail &amp;amp; John Tromp &amp;amp; 50_ft_lock]&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|1850&lt;br /&gt;
|&amp;gt; Loader&#039;s number&lt;br /&gt;
|&amp;lt;code&amp;gt;too large to show&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|[https://codegolf.stackexchange.com/questions/176966/golf-a-number-bigger-than-loaders-number/274634#274634 John Tromp]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Where &amp;lt;math&amp;gt;C(n)&amp;lt;/math&amp;gt; represents the Church numeral &#039;&#039;n&#039;&#039; (&amp;lt;math&amp;gt;\lambda f x. f^n(x)&amp;lt;/math&amp;gt;) written as &amp;lt;code&amp;gt;\\2 (2 ... (2 1)...)&amp;lt;/code&amp;gt; with &#039;&#039;n&#039;&#039; 2s in this text representation.&lt;br /&gt;
&lt;br /&gt;
== Oracle Busy Beaver ==&lt;br /&gt;
While BBλ grows uncomputably fast, one can define functions that grow much faster.&lt;br /&gt;
&lt;br /&gt;
Let&#039;s define a higher order busy beaver function BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; by providing oracle access to BBλ.&lt;br /&gt;
&lt;br /&gt;
This is done by enriching the set of terms and possible reduction steps considered in the BB definition.&lt;br /&gt;
&lt;br /&gt;
A 1-closed term is a term in de Bruijn notation that is closed with 1 additional lambda in front. Any variable bound to that lambda is a free variable &#039;&#039;&#039;f&#039;&#039;&#039; in the term.&lt;br /&gt;
&lt;br /&gt;
An oracle reduction step reduces &#039;&#039;&#039;f&#039;&#039;&#039; t, where t is a closed normal form of size s, to Church numeral BBλ(s).&lt;br /&gt;
&lt;br /&gt;
Note that this is almost identical to the oracle steps in Barendregt and Klop&#039;s &amp;quot;Applications of infinitary lambda calculus&amp;quot;, except that they require t itself to be a church numeral. Allowing arbitrary closed t makes oracle steps more widely applicable while aligning with BBλ&#039;s focus on term sizes.&lt;br /&gt;
&lt;br /&gt;
Now let BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; be the maximum beta/oracle normal form size of any 1-closed lambda term of size n, or 0 if no 1-closed term of size n exists. This appears as sequence [[oeis:A385712|A385712]]  in the OEIS.&lt;br /&gt;
&lt;br /&gt;
The following table shows values of BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; up to 22 plus a lower bound for 28, with larger values expressed in terms of function &amp;lt;math&amp;gt;f(n) = 6 + 5 \times BB \lambda(n)&amp;lt;/math&amp;gt;: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!champion&lt;br /&gt;
!BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;1&amp;lt;/code&amp;gt;&lt;br /&gt;
|1&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt;&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;\2&amp;lt;/code&amp;gt;&lt;br /&gt;
|5&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;\\1&amp;lt;/code&amp;gt;&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\\2&amp;lt;/code&amp;gt;&lt;br /&gt;
|7&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(4) = 26&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;\\2&amp;lt;/code&amp;gt;&lt;br /&gt;
|9&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(6) = 36&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\2)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(7) = 41&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(4) = 266&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\2)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(9) = 51&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\\1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(6) = f(36) = 25 \times 2^{2^{2^{3}}}+36 &amp;gt; 2.85 \times 10^{78}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(7) = f(41) \geq 25 \times 3^{3^{85}}+36 &amp;gt; 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (1 (\1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{3}(4) = f(266)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\\\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^2(9) = f(51)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\1) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^4(4) &amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|19&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (1 (\\2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^3(7)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\1) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^6(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\2) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^7(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\1)) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{52}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\1) 1 (\1) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge f^{BB \lambda(f^3(4))}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
We can generalize BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; to BBλ&amp;lt;sub&amp;gt;α&amp;lt;/sub&amp;gt; for ordinals α by using oracle function BBλ&amp;lt;sub&amp;gt;α-1&amp;lt;/sub&amp;gt; for successor ordinal a, and oracle function (\n -&amp;gt; BBλ&amp;lt;sub&amp;gt;α[n]&amp;lt;/sub&amp;gt;(n)) for limit ordinal α, assuming well-defined fundamental sequences up to α. Because of limited oracle inputs, all oracle busy beavers have identical values up to n=11.&lt;br /&gt;
&lt;br /&gt;
== De Bruijn ==&lt;br /&gt;
We can use De Bruijn index instead of binary to evaluate lambda calculus size. To get the size of an expression, convert it into De Bruijn index then count the number of lambdas / backslashes and numbers. By example, &amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;  is size 8 because it has 3 backslashes and 5 numbers.&lt;br /&gt;
&lt;br /&gt;
For n ≤ 7, BBλ_db(n) = n is trivial and can be achieved via picking any size n term already in normal form, like BBλ(m) for m ≤ 20.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!BBλ_db(n)&lt;br /&gt;
!Value&lt;br /&gt;
!Champion&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|≥ 16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[User:Azerty|Azerty]] &amp;amp; John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|≥ 68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge 3 \uparrow\uparrow 3 + 3 &amp;gt; 7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge 3 \uparrow\uparrow 4 + 3 &amp;gt; 10^{10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys and racheline&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}(2 \uparrow\uparrow 6)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^\omega}(2 \uparrow\uparrow 18)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (1 (\\\1 3 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://tromp.github.io/blog/2026/01/28/largest-number-revised 50_ft_lock]&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{\omega+2}}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\zeta_0}(15)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}(12)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}(f_{\omega^{\omega+2}}(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega+1)}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* https://oeis.org/A333479&lt;br /&gt;
* [https://tromp.github.io/blog/2023/11/24/largest-number The largest number representable in 64 bits]. 24 Nov 2023. John Tromp.&lt;br /&gt;
* [https://tromp.github.io/cl/Binary_lambda_calculus.html Binary Lambda Calculus]. John Tromp.&lt;br /&gt;
* https://github.com/tromp/AIT/tree/master/BB&lt;br /&gt;
[[category:Functions]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=6117</id>
		<title>Busy Beaver for lambda calculus</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=6117"/>
		<updated>2026-02-05T10:00:31Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* De Bruijn */ More precise lower bounds.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Busy Beaver for lambda calculus&#039;&#039;&#039; (&#039;&#039;&#039;BBλ&#039;&#039;&#039;) is a variation of the [[Busy Beaver]] problem for [https://en.wikipedia.org/wiki/Lambda_calculus lambda calculus] invented by John Tromp. BBλ(n) = the maximum normal form size of any closed lambda term of size n. Like the traditional Busy Beaver functions, it is uncomputable (and in fact grows faster than any computable function). If you are not familiar with lambda calculus and beta-reduction, it is recommended to start with that article.&lt;br /&gt;
&lt;br /&gt;
Size is measured in bits using [https://tromp.github.io/cl/Binary_lambda_calculus.html Binary Lambda Calculus] which is a binary prefix-free encoding for all closed lambda calculus terms.&lt;br /&gt;
&lt;br /&gt;
== Analogy to Turing machines ==&lt;br /&gt;
We evaluate terms by applying &#039;&#039;beta-reductions&#039;&#039; until they reach a &#039;&#039;normal form&#039;&#039;. As an analogy to [[Turing machines]]:&lt;br /&gt;
* &#039;&#039;Lambda terms&#039;&#039; are like TM configurations (tape + state + position).&lt;br /&gt;
* Applying &#039;&#039;beta-reduction&#039;&#039; to a term is like taking a TM step.&lt;br /&gt;
* A term is in &#039;&#039;normal form&#039;&#039; if no beta-reductions can be applied. This is like saying the term has halted.&lt;br /&gt;
* A term may or may not be reducible to a normal form. If it is, this is like saying the term halts.&lt;br /&gt;
* Determining whether a term is reducible to a normal form is an undecidable problem equivalent to the halting problem.&lt;br /&gt;
&lt;br /&gt;
Note: That unlike for Turing machines, evaluating lambda terms is non-deterministic. Specifically, there may be multiple beta-reductions possible in a given term. However, if a term can be reduced to a normal form, that normal form is unique. It is not possible to reduce the original term to any different normal form. A term is &#039;&#039;&#039;strongly normalizing&#039;&#039;&#039; if any choice of beta-reductions will lead to this normal form and &#039;&#039;&#039;weakly normalizing&#039;&#039;&#039; if there exist divergent reduction paths which never reach the normal form.&lt;br /&gt;
&lt;br /&gt;
== Proof of Uncomputability ==&lt;br /&gt;
The proof that BBλ(n) is uncomputable is very similar to Radó&#039;s original proof that Σ(n) is uncomputable. Proof by contradiction:&lt;br /&gt;
&lt;br /&gt;
Assume BBλ is computable and so there exists a term &#039;&#039;f&#039;&#039; which computes it on [[wikipedia:Church_encoding|Church numerals]]. In other words: for all &amp;lt;math&amp;gt;n \in \N&amp;lt;/math&amp;gt;: &amp;lt;math&amp;gt;(f \; C_n)&amp;lt;/math&amp;gt; beta reduces to normal form &amp;lt;math&amp;gt;C_{BB\lambda(n)}&amp;lt;/math&amp;gt; (where &amp;lt;math&amp;gt;C_n&amp;lt;/math&amp;gt; denotes the Church numeral &#039;&#039;n&#039;&#039;). Denote the binary lambda encoded size of &#039;&#039;f&#039;&#039; as &#039;&#039;k&#039;&#039;. Consider the term &amp;lt;math&amp;gt;f \; (C_2 \; C_n)&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;2+k+2+(5\times2+6)+(5n+6) = 5n + k + 26&amp;lt;/math&amp;gt; bits. This term reduces to &amp;lt;math&amp;gt;C_{BB\lambda(n^2)}&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6&amp;lt;/math&amp;gt; bits. But for sufficiently large n, &amp;lt;math&amp;gt;n^2 &amp;gt; 5n + k + 26&amp;lt;/math&amp;gt; and so  &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6 &amp;gt; BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;. But this is a contradiction, we&#039;ve found a &amp;lt;math&amp;gt;5n + k + 26&amp;lt;/math&amp;gt; bit term which reduces to a normal form larger than &amp;lt;math&amp;gt;BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Thus BBλ(n) is uncomputable. A variation of this argument shows that BBλ(n) eventually dominates all computable functions.&lt;br /&gt;
&lt;br /&gt;
== Binary Lambda Encoding ==&lt;br /&gt;
A lambda term using [https://en.wikipedia.org/wiki/De_Bruijn_indices De Bruijn indexes] is defined inductively as:&lt;br /&gt;
* Variables: For any &amp;lt;math&amp;gt;n \in \mathbb{Z}^+&amp;lt;/math&amp;gt;, Var(&#039;&#039;n&#039;&#039;) is a term. It represents a variable bound by the lambda expression &#039;&#039;n&#039;&#039; above this one (the De Bruijn index). It is typically written simply as &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Lambdas: For any term &#039;&#039;T&#039;&#039;, Lam(&#039;&#039;T&#039;&#039;) is a term. It represents a unary function with function body &#039;&#039;T&#039;&#039;. It is typically written &amp;lt;math&amp;gt;\lambda T&amp;lt;/math&amp;gt; or &amp;lt;code&amp;gt;\T&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Applications: For any terms &#039;&#039;T, U&#039;&#039;, App(&#039;&#039;T, U&#039;&#039;) is a term. It represents applying function &#039;&#039;T&#039;&#039; to argument &#039;&#039;U&#039;&#039;. It is typically written &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can think of this as a tree where each variable is a leaf, a lambda is a node with one child and applications are nodes with 2 children. A term is &#039;&#039;&#039;closed&#039;&#039;&#039; if every variable is bound. In other words, for every Var(&#039;&#039;n&#039;&#039;) leaf node, there exists &#039;&#039;n&#039;&#039; Lam() nodes above it in the tree of the term.&lt;br /&gt;
&lt;br /&gt;
Encoding (&#039;&#039;blc()&#039;&#039;) is defined recursively:&lt;br /&gt;
&amp;lt;math display=&amp;quot;block&amp;quot;&amp;gt;\begin{array}{l}&lt;br /&gt;
  blc(Var(n)) &amp;amp; = &amp;amp; 1^n 0 \\&lt;br /&gt;
  blc(Lam(T)) &amp;amp; = &amp;amp; 00 \; blc(T) \\&lt;br /&gt;
  blc(App(T, U)) &amp;amp; = &amp;amp; 01 \; blc(T) \; blc(U) \\&lt;br /&gt;
\end{array}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For example, the [https://en.wikipedia.org/wiki/Church_encoding#Church_numerals Church numeral] 2: &amp;lt;math&amp;gt;\lambda f x. (f \; (f \; x))&amp;lt;/math&amp;gt; =  &amp;lt;code&amp;gt;\\(2 (2 1))&amp;lt;/code&amp;gt; = &amp;lt;code&amp;gt;Lam(Lam(App(Var(2), App(Var(2), Var(1))))&amp;lt;/code&amp;gt; is encoded as &amp;lt;code&amp;gt;00 00 01 110 01 110 10&amp;lt;/code&amp;gt; or simply &amp;lt;code&amp;gt;0000011100111010&amp;lt;/code&amp;gt; (spaces are not part of the encoding, only used for demonstration purposes) and thus has size 16 bits.&lt;br /&gt;
&lt;br /&gt;
== Text Encoding conventions ==&lt;br /&gt;
For human readability, a text encoding and set of conventions is used in this article. As described earlier we encode a lambda term as:&lt;br /&gt;
* Var(&#039;&#039;n&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;&lt;br /&gt;
* Lam(&#039;&#039;T&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(\T)&amp;lt;/code&amp;gt;&lt;br /&gt;
* App(&#039;&#039;T, U&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
However, parentheses are also dropped in certain cases by convention:&lt;br /&gt;
* The outermost parentheses are dropped: &amp;lt;code&amp;gt;Lam(1)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;App(1, 2)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped immediately inside a Lam: &amp;lt;code&amp;gt;Lam(Lam(1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;Lam(App(1, 1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1 1&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped in nested Apps using left associativity: &amp;lt;code&amp;gt;App(App(1, 2), 3)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2 3&amp;lt;/code&amp;gt;. (Note: parentheses are still required for &amp;lt;code&amp;gt;App(1, App(2, 3))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 (2 3)&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
This is the convention used in John Tromp&#039;s code and so is used here for consistency.&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
There are no closed lambda terms of size 0, 1, 2, 3 or 5 and so BBλ(n) is not defined for those values. The smallest closed lambda term is &amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt; which has size 4.&lt;br /&gt;
&lt;br /&gt;
For the rest of n ≤ 20: BBλ(n) = n is trivial and can be achieved via picking any n bit term already in normal form. For example &amp;lt;code&amp;gt;\\...\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;\\...\2&amp;lt;/code&amp;gt; with k lambdas has size 2k+2 and 2k+3 respectively (for k ≥ 1 and k ≥ 2 respectively).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!BBλ(n)&lt;br /&gt;
!Champion&lt;br /&gt;
!# Beta reductions&lt;br /&gt;
!Normal form&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|21 || = 22 || &amp;lt;code&amp;gt;\(\1 1) (1 (\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|1|| &amp;lt;code&amp;gt;\(1 (\2)) (1 (\2))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|22 || = 24 || &amp;lt;code&amp;gt;\(\1 1) (1 (\\1))&amp;lt;/code&amp;gt;&amp;lt;code&amp;gt;\(\1 1 1) (1 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|1&lt;br /&gt;
1&lt;br /&gt;
| &amp;lt;code&amp;gt;\(1 (\\1)) (1 (\\1))&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;\(1 1) (1 1) (1 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|23 || = 26 || &amp;lt;code&amp;gt;\(\1 1) (1 (\\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|1|| &amp;lt;code&amp;gt;\(1 (\\2)) (1 (\\2))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|24 || = 30 || &amp;lt;code&amp;gt;\(\1 1 1) (1 (\1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|1|| &amp;lt;code&amp;gt;\(1 (\1)) (1 (\1)) (1 (\1))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|25 || = 42 || &amp;lt;code&amp;gt;\(\1 1) (\1 (2 1))&amp;lt;/code&amp;gt; &lt;br /&gt;
|3|| &amp;lt;code&amp;gt;\1 (\1 (2 1)) (1 (1 (\1 (2 1))))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|26 || = 52 || &amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt; &lt;br /&gt;
|3|| &amp;lt;code&amp;gt;\\2 (\\2 (1 2)) (1 (2 (\\2 (1 2))))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|27 || = 44 || &amp;lt;code&amp;gt;\\(\1 1) (\1 (2 1))&amp;lt;/code&amp;gt; &lt;br /&gt;
|3|| &amp;lt;code&amp;gt;\\1 (\1 (2 1)) (1 (1 (\1 (2 1))))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|28 || = 58 || &amp;lt;code&amp;gt;\(\1 1) (\1 (2 (\2))))&amp;lt;/code&amp;gt; &lt;br /&gt;
|3|| &amp;lt;code&amp;gt;\1 (\\1 (3 (\2))) (1 (\2 (\\1 (4 (\2)))))&amp;lt;/code&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
| 29 || = 223|| &amp;lt;code&amp;gt;\(\1 1) (\1 (1 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|4|| &amp;lt;pre&amp;gt;&lt;br /&gt;
\B (B (1 B))&lt;br /&gt;
  where:&lt;br /&gt;
    B = (A (A (1 A)))&lt;br /&gt;
    A = (1 (\1 (1 (2 1))))&lt;br /&gt;
&amp;lt;/pre&amp;gt;||John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|30&lt;br /&gt;
|= 160&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (1 2))&amp;lt;/code&amp;gt; and&lt;br /&gt;
&amp;lt;code&amp;gt;(\1 (1 1)) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|7&lt;br /&gt;
5&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
\\2 B A (1 (2 B A))&lt;br /&gt;
  where:&lt;br /&gt;
    B = (\\2 A (1 (2 A)))&lt;br /&gt;
    A = (\\2 (1 2))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|31&lt;br /&gt;
|= 267&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
\\2 A (2 A (C (2 A)))&lt;br /&gt;
  where:&lt;br /&gt;
    C = (2 A (2 A (1 B (2 A))))&lt;br /&gt;
    B = (\3 A (3 A (1 (3 A))))&lt;br /&gt;
    A = (\\2 (2 (1 2)))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|32&lt;br /&gt;
|= 298&lt;br /&gt;
|&amp;lt;code&amp;gt;\(\1 1) (\1 (1 (2 (\2))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|33&lt;br /&gt;
|= 1812&lt;br /&gt;
|&amp;lt;code&amp;gt;\(\1 1) (\1 (1 (1 (2 1))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
\C (C (C (1 C)))&lt;br /&gt;
  where:&lt;br /&gt;
    C = (B (B (B (1 B)))&lt;br /&gt;
    B = (A (A (A (1 A)))&lt;br /&gt;
    A = (1 (\1 (1 (1 (2 1)))))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|34 || &amp;lt;math&amp;gt;= \ 5 \left(2^{2^{2^2}}\right) + 6 = 327\,686&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt; and&lt;br /&gt;
&amp;lt;code&amp;gt;(\1 (1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;C(2^{2^{2^2}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|35 || &amp;lt;math&amp;gt;= 5 \left(3^{3^3}\right) + 6 &amp;gt; 3.8 \times 10^{13}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt; &lt;br /&gt;
| || &amp;lt;math&amp;gt;C(3^{3^3})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|36 || &amp;lt;math&amp;gt;= 5 \left(2^{2^{2^3}}\right) + 6 &amp;gt; 5.7 \times 10^{77}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\2 (2 1))))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;C(2^{2^{2^3}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|37 || &amp;lt;math&amp;gt; = BB\lambda(35)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;code&amp;gt;\(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;\lambda x. C(3^{3^3})&amp;lt;/math&amp;gt;||mxdys, tromp, dyuan, sligocki&lt;br /&gt;
|-&lt;br /&gt;
|38 || &amp;lt;math&amp;gt;\ge 5 \left(2^{2^{2^{2^2}}}\right) + 6 &amp;gt; 10^{10^4}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt; and&lt;br /&gt;
&amp;lt;code&amp;gt;(\1 (1 1) 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;C(2^{2^{2^{2^2}}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|39 || &amp;lt;math&amp;gt;\ge 5 \left(3^{3^{3^3}}\right) + 6 &amp;gt; 10^{10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt; &lt;br /&gt;
| || &amp;lt;math&amp;gt;C(3^{3^{3^3}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|40 || &amp;lt;math&amp;gt; &amp;gt; (2\uparrow\uparrow)^{15} 33 &amp;gt; 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{15} 33&amp;lt;/math&amp;gt;|| mxdys and racheline&lt;br /&gt;
|-&lt;br /&gt;
|41 || &amp;lt;math&amp;gt;\ge 5 \left(3^{3^{85}}\right) + 6 &amp;gt; 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;code&amp;gt;(\1 (\1 1) 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;C(3^{3^{85}})&amp;lt;/math&amp;gt;||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|42 ||&amp;lt;math&amp;gt; \ge BB\lambda(40)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;\(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
| || ||&lt;br /&gt;
|-&lt;br /&gt;
|43 ||&amp;lt;math&amp;gt; &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;(\lambda y.y\;C(2)\;T(n))&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|44 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt; &lt;br /&gt;
| || &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|45 || &amp;lt;math&amp;gt; \ge BB\lambda(43)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;\(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || ||&lt;br /&gt;
|-&lt;br /&gt;
|46 || &amp;lt;math&amp;gt; \ge BB\lambda(44)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;code&amp;gt;\(\1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
| || ||&lt;br /&gt;
|-&lt;br /&gt;
|47 || &lt;br /&gt;
|  &lt;br /&gt;
| || ||&lt;br /&gt;
|-&lt;br /&gt;
|48 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt; &lt;br /&gt;
| || &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
 &amp;lt;math&amp;gt;&amp;gt; \text{Graham&#039;s number}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&amp;lt;math&amp;gt;C(N) \text{ for } N \approx f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|61&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{2 \uparrow\uparrow 18-1}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (1 (\\\1 3 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&amp;lt;math&amp;gt;C(N) \text{ for } N \approx f_{\omega^{2 \uparrow\uparrow 18-1}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://tromp.github.io/blog/2026/01/28/largest-number-revised 50_ft_lock]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|86&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{\omega^{2}}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|90&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\zeta_0}\left(15\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|94&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(12\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
 &amp;lt;math&amp;gt;&amp;gt; \text{TREE}(G64)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|96&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(f_{\omega^{\omega^{2}}}\left(2\right)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|100&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)+1}\left(4\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|331&lt;br /&gt;
| lim(BMS)&lt;br /&gt;
|&amp;lt;code&amp;gt;too large to show&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/bms.lam Patcail &amp;amp; John Tromp &amp;amp; 50_ft_lock]&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|1850&lt;br /&gt;
|&amp;gt; Loader&#039;s number&lt;br /&gt;
|&amp;lt;code&amp;gt;too large to show&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|[https://codegolf.stackexchange.com/questions/176966/golf-a-number-bigger-than-loaders-number/274634#274634 John Tromp]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Where &amp;lt;math&amp;gt;C(n)&amp;lt;/math&amp;gt; represents the Church numeral &#039;&#039;n&#039;&#039; (&amp;lt;math&amp;gt;\lambda f x. f^n(x)&amp;lt;/math&amp;gt;) written as &amp;lt;code&amp;gt;\\2 (2 ... (2 1)...)&amp;lt;/code&amp;gt; with &#039;&#039;n&#039;&#039; 2s in this text representation.&lt;br /&gt;
&lt;br /&gt;
== Oracle Busy Beaver ==&lt;br /&gt;
While BBλ grows uncomputably fast, one can define functions that grow much faster.&lt;br /&gt;
&lt;br /&gt;
Let&#039;s define a higher order busy beaver function BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; by providing oracle access to BBλ.&lt;br /&gt;
&lt;br /&gt;
This is done by enriching the set of terms and possible reduction steps considered in the BB definition.&lt;br /&gt;
&lt;br /&gt;
A 1-closed term is a term in de Bruijn notation that is closed with 1 additional lambda in front. Any variable bound to that lambda is a free variable &#039;&#039;&#039;f&#039;&#039;&#039; in the term.&lt;br /&gt;
&lt;br /&gt;
An oracle reduction step reduces &#039;&#039;&#039;f&#039;&#039;&#039; t, where t is a closed normal form of size s, to Church numeral BBλ(s).&lt;br /&gt;
&lt;br /&gt;
Note that this is almost identical to the oracle steps in Barendregt and Klop&#039;s &amp;quot;Applications of infinitary lambda calculus&amp;quot;, except that they require t itself to be a church numeral. Allowing arbitrary closed t makes oracle steps more widely applicable while aligning with BBλ&#039;s focus on term sizes.&lt;br /&gt;
&lt;br /&gt;
Now let BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; be the maximum beta/oracle normal form size of any 1-closed lambda term of size n, or 0 if no 1-closed term of size n exists. This appears as sequence [[oeis:A385712|A385712]]  in the OEIS.&lt;br /&gt;
&lt;br /&gt;
The following table shows values of BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; up to 22 plus a lower bound for 28, with larger values expressed in terms of function &amp;lt;math&amp;gt;f(n) = 6 + 5 \times BB \lambda(n)&amp;lt;/math&amp;gt;: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!champion&lt;br /&gt;
!BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;1&amp;lt;/code&amp;gt;&lt;br /&gt;
|1&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt;&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;\2&amp;lt;/code&amp;gt;&lt;br /&gt;
|5&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;\\1&amp;lt;/code&amp;gt;&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\\2&amp;lt;/code&amp;gt;&lt;br /&gt;
|7&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(4) = 26&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;\\2&amp;lt;/code&amp;gt;&lt;br /&gt;
|9&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(6) = 36&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\2)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(7) = 41&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(4) = 266&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\2)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(9) = 51&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\\1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(6) = f(36) = 25 \times 2^{2^{2^{3}}}+36 &amp;gt; 2.85 \times 10^{78}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(7) = f(41) \geq 25 \times 3^{3^{85}}+36 &amp;gt; 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (1 (\1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{3}(4) = f(266)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\\\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^2(9) = f(51)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\1) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^4(4) &amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|19&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (1 (\\2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^3(7)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\1) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^6(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\2) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^7(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\1)) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{52}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\1) 1 (\1) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge f^{BB \lambda(f^3(4))}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
We can generalize BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; to BBλ&amp;lt;sub&amp;gt;α&amp;lt;/sub&amp;gt; for ordinals α by using oracle function BBλ&amp;lt;sub&amp;gt;α-1&amp;lt;/sub&amp;gt; for successor ordinal a, and oracle function (\n -&amp;gt; BBλ&amp;lt;sub&amp;gt;α[n]&amp;lt;/sub&amp;gt;(n)) for limit ordinal α, assuming well-defined fundamental sequences up to α. Because of limited oracle inputs, all oracle busy beavers have identical values up to n=11.&lt;br /&gt;
&lt;br /&gt;
== De Bruijn ==&lt;br /&gt;
We can use De Bruijn index instead of binary to evaluate lambda calculus size.&lt;br /&gt;
&lt;br /&gt;
To get the size of an expression, convert it into De Bruijn index then count the number of lambdas / backslashes and numbers.&lt;br /&gt;
&lt;br /&gt;
By example, &amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;  is size 8 because it has 3 backslashes and 5 numbers.&lt;br /&gt;
&lt;br /&gt;
It is believed that d&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!n&lt;br /&gt;
!Value&lt;br /&gt;
!Champion&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|≥ 7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|≥ 16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[User:Azerty|Azerty]] &amp;amp; John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|≥ 68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge 3 \uparrow\uparrow 3 + 3 &amp;gt; 7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge 3 \uparrow\uparrow 4 + 3 &amp;gt; 10^{10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys and racheline&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}(2 \uparrow\uparrow 6)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^\omega}(2 \uparrow\uparrow 18)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (1 (\\\1 3 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://tromp.github.io/blog/2026/01/28/largest-number-revised 50_ft_lock]&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{\omega+2}}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\zeta_0}(15)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\psi(\Omega_\omega)}(12)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\psi(\Omega_\omega)}(f_{\omega^{\omega+2}}(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\psi(\Omega_\omega+1)}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* https://oeis.org/A333479&lt;br /&gt;
* [https://tromp.github.io/blog/2023/11/24/largest-number The largest number representable in 64 bits]. 24 Nov 2023. John Tromp.&lt;br /&gt;
* [https://tromp.github.io/cl/Binary_lambda_calculus.html Binary Lambda Calculus]. John Tromp.&lt;br /&gt;
* https://github.com/tromp/AIT/tree/master/BB&lt;br /&gt;
[[category:Functions]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=6116</id>
		<title>Busy Beaver for lambda calculus</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=6116"/>
		<updated>2026-02-05T09:54:56Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* De Bruijn */ Added new lower bounds and added expression size explanation.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Busy Beaver for lambda calculus&#039;&#039;&#039; (&#039;&#039;&#039;BBλ&#039;&#039;&#039;) is a variation of the [[Busy Beaver]] problem for [https://en.wikipedia.org/wiki/Lambda_calculus lambda calculus] invented by John Tromp. BBλ(n) = the maximum normal form size of any closed lambda term of size n. Like the traditional Busy Beaver functions, it is uncomputable (and in fact grows faster than any computable function). If you are not familiar with lambda calculus and beta-reduction, it is recommended to start with that article.&lt;br /&gt;
&lt;br /&gt;
Size is measured in bits using [https://tromp.github.io/cl/Binary_lambda_calculus.html Binary Lambda Calculus] which is a binary prefix-free encoding for all closed lambda calculus terms.&lt;br /&gt;
&lt;br /&gt;
== Analogy to Turing machines ==&lt;br /&gt;
We evaluate terms by applying &#039;&#039;beta-reductions&#039;&#039; until they reach a &#039;&#039;normal form&#039;&#039;. As an analogy to [[Turing machines]]:&lt;br /&gt;
* &#039;&#039;Lambda terms&#039;&#039; are like TM configurations (tape + state + position).&lt;br /&gt;
* Applying &#039;&#039;beta-reduction&#039;&#039; to a term is like taking a TM step.&lt;br /&gt;
* A term is in &#039;&#039;normal form&#039;&#039; if no beta-reductions can be applied. This is like saying the term has halted.&lt;br /&gt;
* A term may or may not be reducible to a normal form. If it is, this is like saying the term halts.&lt;br /&gt;
* Determining whether a term is reducible to a normal form is an undecidable problem equivalent to the halting problem.&lt;br /&gt;
&lt;br /&gt;
Note: That unlike for Turing machines, evaluating lambda terms is non-deterministic. Specifically, there may be multiple beta-reductions possible in a given term. However, if a term can be reduced to a normal form, that normal form is unique. It is not possible to reduce the original term to any different normal form. A term is &#039;&#039;&#039;strongly normalizing&#039;&#039;&#039; if any choice of beta-reductions will lead to this normal form and &#039;&#039;&#039;weakly normalizing&#039;&#039;&#039; if there exist divergent reduction paths which never reach the normal form.&lt;br /&gt;
&lt;br /&gt;
== Proof of Uncomputability ==&lt;br /&gt;
The proof that BBλ(n) is uncomputable is very similar to Radó&#039;s original proof that Σ(n) is uncomputable. Proof by contradiction:&lt;br /&gt;
&lt;br /&gt;
Assume BBλ is computable and so there exists a term &#039;&#039;f&#039;&#039; which computes it on [[wikipedia:Church_encoding|Church numerals]]. In other words: for all &amp;lt;math&amp;gt;n \in \N&amp;lt;/math&amp;gt;: &amp;lt;math&amp;gt;(f \; C_n)&amp;lt;/math&amp;gt; beta reduces to normal form &amp;lt;math&amp;gt;C_{BB\lambda(n)}&amp;lt;/math&amp;gt; (where &amp;lt;math&amp;gt;C_n&amp;lt;/math&amp;gt; denotes the Church numeral &#039;&#039;n&#039;&#039;). Denote the binary lambda encoded size of &#039;&#039;f&#039;&#039; as &#039;&#039;k&#039;&#039;. Consider the term &amp;lt;math&amp;gt;f \; (C_2 \; C_n)&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;2+k+2+(5\times2+6)+(5n+6) = 5n + k + 26&amp;lt;/math&amp;gt; bits. This term reduces to &amp;lt;math&amp;gt;C_{BB\lambda(n^2)}&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6&amp;lt;/math&amp;gt; bits. But for sufficiently large n, &amp;lt;math&amp;gt;n^2 &amp;gt; 5n + k + 26&amp;lt;/math&amp;gt; and so  &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6 &amp;gt; BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;. But this is a contradiction, we&#039;ve found a &amp;lt;math&amp;gt;5n + k + 26&amp;lt;/math&amp;gt; bit term which reduces to a normal form larger than &amp;lt;math&amp;gt;BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Thus BBλ(n) is uncomputable. A variation of this argument shows that BBλ(n) eventually dominates all computable functions.&lt;br /&gt;
&lt;br /&gt;
== Binary Lambda Encoding ==&lt;br /&gt;
A lambda term using [https://en.wikipedia.org/wiki/De_Bruijn_indices De Bruijn indexes] is defined inductively as:&lt;br /&gt;
* Variables: For any &amp;lt;math&amp;gt;n \in \mathbb{Z}^+&amp;lt;/math&amp;gt;, Var(&#039;&#039;n&#039;&#039;) is a term. It represents a variable bound by the lambda expression &#039;&#039;n&#039;&#039; above this one (the De Bruijn index). It is typically written simply as &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Lambdas: For any term &#039;&#039;T&#039;&#039;, Lam(&#039;&#039;T&#039;&#039;) is a term. It represents a unary function with function body &#039;&#039;T&#039;&#039;. It is typically written &amp;lt;math&amp;gt;\lambda T&amp;lt;/math&amp;gt; or &amp;lt;code&amp;gt;\T&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Applications: For any terms &#039;&#039;T, U&#039;&#039;, App(&#039;&#039;T, U&#039;&#039;) is a term. It represents applying function &#039;&#039;T&#039;&#039; to argument &#039;&#039;U&#039;&#039;. It is typically written &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can think of this as a tree where each variable is a leaf, a lambda is a node with one child and applications are nodes with 2 children. A term is &#039;&#039;&#039;closed&#039;&#039;&#039; if every variable is bound. In other words, for every Var(&#039;&#039;n&#039;&#039;) leaf node, there exists &#039;&#039;n&#039;&#039; Lam() nodes above it in the tree of the term.&lt;br /&gt;
&lt;br /&gt;
Encoding (&#039;&#039;blc()&#039;&#039;) is defined recursively:&lt;br /&gt;
&amp;lt;math display=&amp;quot;block&amp;quot;&amp;gt;\begin{array}{l}&lt;br /&gt;
  blc(Var(n)) &amp;amp; = &amp;amp; 1^n 0 \\&lt;br /&gt;
  blc(Lam(T)) &amp;amp; = &amp;amp; 00 \; blc(T) \\&lt;br /&gt;
  blc(App(T, U)) &amp;amp; = &amp;amp; 01 \; blc(T) \; blc(U) \\&lt;br /&gt;
\end{array}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For example, the [https://en.wikipedia.org/wiki/Church_encoding#Church_numerals Church numeral] 2: &amp;lt;math&amp;gt;\lambda f x. (f \; (f \; x))&amp;lt;/math&amp;gt; =  &amp;lt;code&amp;gt;\\(2 (2 1))&amp;lt;/code&amp;gt; = &amp;lt;code&amp;gt;Lam(Lam(App(Var(2), App(Var(2), Var(1))))&amp;lt;/code&amp;gt; is encoded as &amp;lt;code&amp;gt;00 00 01 110 01 110 10&amp;lt;/code&amp;gt; or simply &amp;lt;code&amp;gt;0000011100111010&amp;lt;/code&amp;gt; (spaces are not part of the encoding, only used for demonstration purposes) and thus has size 16 bits.&lt;br /&gt;
&lt;br /&gt;
== Text Encoding conventions ==&lt;br /&gt;
For human readability, a text encoding and set of conventions is used in this article. As described earlier we encode a lambda term as:&lt;br /&gt;
* Var(&#039;&#039;n&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;&lt;br /&gt;
* Lam(&#039;&#039;T&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(\T)&amp;lt;/code&amp;gt;&lt;br /&gt;
* App(&#039;&#039;T, U&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
However, parentheses are also dropped in certain cases by convention:&lt;br /&gt;
* The outermost parentheses are dropped: &amp;lt;code&amp;gt;Lam(1)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;App(1, 2)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped immediately inside a Lam: &amp;lt;code&amp;gt;Lam(Lam(1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;Lam(App(1, 1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1 1&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped in nested Apps using left associativity: &amp;lt;code&amp;gt;App(App(1, 2), 3)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2 3&amp;lt;/code&amp;gt;. (Note: parentheses are still required for &amp;lt;code&amp;gt;App(1, App(2, 3))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 (2 3)&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
This is the convention used in John Tromp&#039;s code and so is used here for consistency.&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
There are no closed lambda terms of size 0, 1, 2, 3 or 5 and so BBλ(n) is not defined for those values. The smallest closed lambda term is &amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt; which has size 4.&lt;br /&gt;
&lt;br /&gt;
For the rest of n ≤ 20: BBλ(n) = n is trivial and can be achieved via picking any n bit term already in normal form. For example &amp;lt;code&amp;gt;\\...\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;\\...\2&amp;lt;/code&amp;gt; with k lambdas has size 2k+2 and 2k+3 respectively (for k ≥ 1 and k ≥ 2 respectively).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!BBλ(n)&lt;br /&gt;
!Champion&lt;br /&gt;
!# Beta reductions&lt;br /&gt;
!Normal form&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|21 || = 22 || &amp;lt;code&amp;gt;\(\1 1) (1 (\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|1|| &amp;lt;code&amp;gt;\(1 (\2)) (1 (\2))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|22 || = 24 || &amp;lt;code&amp;gt;\(\1 1) (1 (\\1))&amp;lt;/code&amp;gt;&amp;lt;code&amp;gt;\(\1 1 1) (1 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|1&lt;br /&gt;
1&lt;br /&gt;
| &amp;lt;code&amp;gt;\(1 (\\1)) (1 (\\1))&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;\(1 1) (1 1) (1 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|23 || = 26 || &amp;lt;code&amp;gt;\(\1 1) (1 (\\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|1|| &amp;lt;code&amp;gt;\(1 (\\2)) (1 (\\2))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|24 || = 30 || &amp;lt;code&amp;gt;\(\1 1 1) (1 (\1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|1|| &amp;lt;code&amp;gt;\(1 (\1)) (1 (\1)) (1 (\1))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|25 || = 42 || &amp;lt;code&amp;gt;\(\1 1) (\1 (2 1))&amp;lt;/code&amp;gt; &lt;br /&gt;
|3|| &amp;lt;code&amp;gt;\1 (\1 (2 1)) (1 (1 (\1 (2 1))))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|26 || = 52 || &amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt; &lt;br /&gt;
|3|| &amp;lt;code&amp;gt;\\2 (\\2 (1 2)) (1 (2 (\\2 (1 2))))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|27 || = 44 || &amp;lt;code&amp;gt;\\(\1 1) (\1 (2 1))&amp;lt;/code&amp;gt; &lt;br /&gt;
|3|| &amp;lt;code&amp;gt;\\1 (\1 (2 1)) (1 (1 (\1 (2 1))))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|28 || = 58 || &amp;lt;code&amp;gt;\(\1 1) (\1 (2 (\2))))&amp;lt;/code&amp;gt; &lt;br /&gt;
|3|| &amp;lt;code&amp;gt;\1 (\\1 (3 (\2))) (1 (\2 (\\1 (4 (\2)))))&amp;lt;/code&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
| 29 || = 223|| &amp;lt;code&amp;gt;\(\1 1) (\1 (1 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|4|| &amp;lt;pre&amp;gt;&lt;br /&gt;
\B (B (1 B))&lt;br /&gt;
  where:&lt;br /&gt;
    B = (A (A (1 A)))&lt;br /&gt;
    A = (1 (\1 (1 (2 1))))&lt;br /&gt;
&amp;lt;/pre&amp;gt;||John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|30&lt;br /&gt;
|= 160&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (1 2))&amp;lt;/code&amp;gt; and&lt;br /&gt;
&amp;lt;code&amp;gt;(\1 (1 1)) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|7&lt;br /&gt;
5&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
\\2 B A (1 (2 B A))&lt;br /&gt;
  where:&lt;br /&gt;
    B = (\\2 A (1 (2 A)))&lt;br /&gt;
    A = (\\2 (1 2))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|31&lt;br /&gt;
|= 267&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
\\2 A (2 A (C (2 A)))&lt;br /&gt;
  where:&lt;br /&gt;
    C = (2 A (2 A (1 B (2 A))))&lt;br /&gt;
    B = (\3 A (3 A (1 (3 A))))&lt;br /&gt;
    A = (\\2 (2 (1 2)))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|32&lt;br /&gt;
|= 298&lt;br /&gt;
|&amp;lt;code&amp;gt;\(\1 1) (\1 (1 (2 (\2))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|33&lt;br /&gt;
|= 1812&lt;br /&gt;
|&amp;lt;code&amp;gt;\(\1 1) (\1 (1 (1 (2 1))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
\C (C (C (1 C)))&lt;br /&gt;
  where:&lt;br /&gt;
    C = (B (B (B (1 B)))&lt;br /&gt;
    B = (A (A (A (1 A)))&lt;br /&gt;
    A = (1 (\1 (1 (1 (2 1)))))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|34 || &amp;lt;math&amp;gt;= \ 5 \left(2^{2^{2^2}}\right) + 6 = 327\,686&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt; and&lt;br /&gt;
&amp;lt;code&amp;gt;(\1 (1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;C(2^{2^{2^2}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|35 || &amp;lt;math&amp;gt;= 5 \left(3^{3^3}\right) + 6 &amp;gt; 3.8 \times 10^{13}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt; &lt;br /&gt;
| || &amp;lt;math&amp;gt;C(3^{3^3})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|36 || &amp;lt;math&amp;gt;= 5 \left(2^{2^{2^3}}\right) + 6 &amp;gt; 5.7 \times 10^{77}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\2 (2 1))))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;C(2^{2^{2^3}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|37 || &amp;lt;math&amp;gt; = BB\lambda(35)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;code&amp;gt;\(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;\lambda x. C(3^{3^3})&amp;lt;/math&amp;gt;||mxdys, tromp, dyuan, sligocki&lt;br /&gt;
|-&lt;br /&gt;
|38 || &amp;lt;math&amp;gt;\ge 5 \left(2^{2^{2^{2^2}}}\right) + 6 &amp;gt; 10^{10^4}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt; and&lt;br /&gt;
&amp;lt;code&amp;gt;(\1 (1 1) 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;C(2^{2^{2^{2^2}}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|39 || &amp;lt;math&amp;gt;\ge 5 \left(3^{3^{3^3}}\right) + 6 &amp;gt; 10^{10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt; &lt;br /&gt;
| || &amp;lt;math&amp;gt;C(3^{3^{3^3}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|40 || &amp;lt;math&amp;gt; &amp;gt; (2\uparrow\uparrow)^{15} 33 &amp;gt; 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{15} 33&amp;lt;/math&amp;gt;|| mxdys and racheline&lt;br /&gt;
|-&lt;br /&gt;
|41 || &amp;lt;math&amp;gt;\ge 5 \left(3^{3^{85}}\right) + 6 &amp;gt; 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;code&amp;gt;(\1 (\1 1) 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;C(3^{3^{85}})&amp;lt;/math&amp;gt;||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|42 ||&amp;lt;math&amp;gt; \ge BB\lambda(40)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;\(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
| || ||&lt;br /&gt;
|-&lt;br /&gt;
|43 ||&amp;lt;math&amp;gt; &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;(\lambda y.y\;C(2)\;T(n))&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|44 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt; &lt;br /&gt;
| || &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|45 || &amp;lt;math&amp;gt; \ge BB\lambda(43)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;\(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || ||&lt;br /&gt;
|-&lt;br /&gt;
|46 || &amp;lt;math&amp;gt; \ge BB\lambda(44)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;code&amp;gt;\(\1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
| || ||&lt;br /&gt;
|-&lt;br /&gt;
|47 || &lt;br /&gt;
|  &lt;br /&gt;
| || ||&lt;br /&gt;
|-&lt;br /&gt;
|48 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt; &lt;br /&gt;
| || &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
 &amp;lt;math&amp;gt;&amp;gt; \text{Graham&#039;s number}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&amp;lt;math&amp;gt;C(N) \text{ for } N \approx f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|61&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{2 \uparrow\uparrow 18-1}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (1 (\\\1 3 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&amp;lt;math&amp;gt;C(N) \text{ for } N \approx f_{\omega^{2 \uparrow\uparrow 18-1}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://tromp.github.io/blog/2026/01/28/largest-number-revised 50_ft_lock]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|86&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{\omega^{2}}}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|90&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\zeta_0}\left(15\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|94&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(12\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
 &amp;lt;math&amp;gt;&amp;gt; \text{TREE}(G64)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|96&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)}\left(f_{\omega^{\omega^{2}}}\left(2\right)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|100&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\psi(\Omega_\omega)+1}\left(4\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|331&lt;br /&gt;
| lim(BMS)&lt;br /&gt;
|&amp;lt;code&amp;gt;too large to show&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/bms.lam Patcail &amp;amp; John Tromp &amp;amp; 50_ft_lock]&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|1850&lt;br /&gt;
|&amp;gt; Loader&#039;s number&lt;br /&gt;
|&amp;lt;code&amp;gt;too large to show&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|[https://codegolf.stackexchange.com/questions/176966/golf-a-number-bigger-than-loaders-number/274634#274634 John Tromp]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Where &amp;lt;math&amp;gt;C(n)&amp;lt;/math&amp;gt; represents the Church numeral &#039;&#039;n&#039;&#039; (&amp;lt;math&amp;gt;\lambda f x. f^n(x)&amp;lt;/math&amp;gt;) written as &amp;lt;code&amp;gt;\\2 (2 ... (2 1)...)&amp;lt;/code&amp;gt; with &#039;&#039;n&#039;&#039; 2s in this text representation.&lt;br /&gt;
&lt;br /&gt;
== Oracle Busy Beaver ==&lt;br /&gt;
While BBλ grows uncomputably fast, one can define functions that grow much faster.&lt;br /&gt;
&lt;br /&gt;
Let&#039;s define a higher order busy beaver function BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; by providing oracle access to BBλ.&lt;br /&gt;
&lt;br /&gt;
This is done by enriching the set of terms and possible reduction steps considered in the BB definition.&lt;br /&gt;
&lt;br /&gt;
A 1-closed term is a term in de Bruijn notation that is closed with 1 additional lambda in front. Any variable bound to that lambda is a free variable &#039;&#039;&#039;f&#039;&#039;&#039; in the term.&lt;br /&gt;
&lt;br /&gt;
An oracle reduction step reduces &#039;&#039;&#039;f&#039;&#039;&#039; t, where t is a closed normal form of size s, to Church numeral BBλ(s).&lt;br /&gt;
&lt;br /&gt;
Note that this is almost identical to the oracle steps in Barendregt and Klop&#039;s &amp;quot;Applications of infinitary lambda calculus&amp;quot;, except that they require t itself to be a church numeral. Allowing arbitrary closed t makes oracle steps more widely applicable while aligning with BBλ&#039;s focus on term sizes.&lt;br /&gt;
&lt;br /&gt;
Now let BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; be the maximum beta/oracle normal form size of any 1-closed lambda term of size n, or 0 if no 1-closed term of size n exists. This appears as sequence [[oeis:A385712|A385712]]  in the OEIS.&lt;br /&gt;
&lt;br /&gt;
The following table shows values of BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; up to 22 plus a lower bound for 28, with larger values expressed in terms of function &amp;lt;math&amp;gt;f(n) = 6 + 5 \times BB \lambda(n)&amp;lt;/math&amp;gt;: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!champion&lt;br /&gt;
!BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;1&amp;lt;/code&amp;gt;&lt;br /&gt;
|1&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt;&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;\2&amp;lt;/code&amp;gt;&lt;br /&gt;
|5&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;\\1&amp;lt;/code&amp;gt;&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\\2&amp;lt;/code&amp;gt;&lt;br /&gt;
|7&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(4) = 26&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;\\2&amp;lt;/code&amp;gt;&lt;br /&gt;
|9&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(6) = 36&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\2)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(7) = 41&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(4) = 266&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\2)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(9) = 51&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\\1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(6) = f(36) = 25 \times 2^{2^{2^{3}}}+36 &amp;gt; 2.85 \times 10^{78}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(7) = f(41) \geq 25 \times 3^{3^{85}}+36 &amp;gt; 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (1 (\1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{3}(4) = f(266)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\\\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^2(9) = f(51)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\1) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^4(4) &amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|19&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (1 (\\2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^3(7)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\1) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^6(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\2) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^7(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\1)) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{52}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\1) 1 (\1) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge f^{BB \lambda(f^3(4))}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
We can generalize BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; to BBλ&amp;lt;sub&amp;gt;α&amp;lt;/sub&amp;gt; for ordinals α by using oracle function BBλ&amp;lt;sub&amp;gt;α-1&amp;lt;/sub&amp;gt; for successor ordinal a, and oracle function (\n -&amp;gt; BBλ&amp;lt;sub&amp;gt;α[n]&amp;lt;/sub&amp;gt;(n)) for limit ordinal α, assuming well-defined fundamental sequences up to α. Because of limited oracle inputs, all oracle busy beavers have identical values up to n=11.&lt;br /&gt;
&lt;br /&gt;
== De Bruijn ==&lt;br /&gt;
We can use De Bruijn index instead of binary to evaluate lambda calculus size.&lt;br /&gt;
&lt;br /&gt;
To get the size of an expression, convert it into De Bruijn index then count the number of lambdas / backslashes and numbers.&lt;br /&gt;
&lt;br /&gt;
By example, &amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;  is size 8 because it has 3 backslashes and 5 numbers.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!n&lt;br /&gt;
!Value&lt;br /&gt;
!Champion&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|≥ 7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|≥ 16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[User:Azerty|Azerty]] &amp;amp; John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|≥ 68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys and racheline&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^\omega}(10 \uparrow\uparrow 16)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (1 (\\\1 3 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://tromp.github.io/blog/2026/01/28/largest-number-revised 50_ft_lock]&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^{\omega+2}}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\zeta_0}(15)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\psi(\Omega_\omega)}(12)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\psi(\Omega_\omega)}(f_{\omega^{\omega+2}}(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|-&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\psi(\Omega_\omega+1)}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* https://oeis.org/A333479&lt;br /&gt;
* [https://tromp.github.io/blog/2023/11/24/largest-number The largest number representable in 64 bits]. 24 Nov 2023. John Tromp.&lt;br /&gt;
* [https://tromp.github.io/cl/Binary_lambda_calculus.html Binary Lambda Calculus]. John Tromp.&lt;br /&gt;
* https://github.com/tromp/AIT/tree/master/BB&lt;br /&gt;
[[category:Functions]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=6079</id>
		<title>User:Azerty/Busy Beaver Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=6079"/>
		<updated>2026-01-26T09:22:48Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* De Bruijn */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of Busy Beaver functions for Turing machines and other simple Turing-complete systems and their current lower bounds.&lt;br /&gt;
&lt;br /&gt;
I only add functions that meet the requirements below:&lt;br /&gt;
&lt;br /&gt;
* The function must grow uncomputably fast, like BB(n).&lt;br /&gt;
* The function must not have similar champions to other function, like Σ(n).&lt;br /&gt;
* The function must not be arbitrary complex.&lt;br /&gt;
&lt;br /&gt;
== Turing machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver Functions|Classic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2)|BB(2,2)]]&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,3,1)&lt;br /&gt;
|14&lt;br /&gt;
|{{TM|0RB---1LB_1LA2RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3)|BB(3,2)]]&lt;br /&gt;
|21&lt;br /&gt;
|{{TM|1RB---_1LB0RC_1LC1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,3)]]&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(4,2,1)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB---_1LB0LC_1RD1LD_0RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,2)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB---0RC_2LC------_2RC0LC1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4)|BB(4,2)]]&lt;br /&gt;
|107&lt;br /&gt;
|{{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,4,1)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(5,2,1)&lt;br /&gt;
|242&lt;br /&gt;
|{{TM|1RB0LA_1RC0LA_1LD0RE_---1LA_---0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,4)]]&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,1)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA_1LC1LA2RB_---1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(5)|BB(5,2)]]&lt;br /&gt;
|47,176,870&lt;br /&gt;
|{{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(6,2,1)&lt;br /&gt;
|17,397,627,083&lt;br /&gt;
|{{TM|1RB0LA_1RC1RD_1LB1RA_---0RE_1LF0RC_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;1.191 \times 10^{17}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,5)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,6)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10^{10^{115}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3RB5RA1LB5LA2LB_2LA2RA4RB---3LB2LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(6)|BB(6,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_1RC---_1LD0RF_1RA0LE_0LD1RC_1RA0RE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10^{28}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(7)|BB(7,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{11} 10 \uparrow^{10} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LC1LF_1RD0LB_1RA1LE_---0LC_1RG1LD_0RG0RF|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,4)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(9,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega(10 \uparrow^{7} 10 \uparrow^{7} 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_1LB0LH|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,5)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(10,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(11,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(12,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(15,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(16,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,7)]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Instruction-Limited Busy Beaver|Instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(5)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(6)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(7)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(9)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(29)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(31)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turing machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB---2RB_2LB2RA0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2,1)&lt;br /&gt;
|11&lt;br /&gt;
|{{TM|1RB---_0RC0RB_1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|0RB0LB_0RC1RC_1LA0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB0RA0RB_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4,1)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB3RA0RB0RA_2LA2RB1LB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4)&lt;br /&gt;
|49&lt;br /&gt;
|{{TM|1RB2RA2RB2LA_2LB0RA3RB0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2,1)&lt;br /&gt;
|55&lt;br /&gt;
|{{TM|0RB---_1RC0LD_1RD1RB_1LB0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2)&lt;br /&gt;
|63&lt;br /&gt;
|{{TM|0RB0LD_0RC1LC_0RD1LA_1LB1RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(5,2,1)&lt;br /&gt;
|70&lt;br /&gt;
|{{TM|0RB---_0RC1LC_1RD0RE_1RE1RD_1LE1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3,2)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3)&lt;br /&gt;
|202&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,3,2)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turing machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBti(3)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(4)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(5)&lt;br /&gt;
|18&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(6)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB------_1RC------_1RD------_2LD2RD0RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(7)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(8)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function|Blanking]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2,1)&lt;br /&gt;
|16&lt;br /&gt;
|{{TM|1RB---_1LC0LC_1RC0LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3,1)&lt;br /&gt;
|22&lt;br /&gt;
|{{TM|1RB2LB---_2LA0RB1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2)&lt;br /&gt;
|34&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2,1)&lt;br /&gt;
|169&lt;br /&gt;
|{{TM|1RB---_0RC0LA_1LC1LD_0RB0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,2)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,1)&lt;br /&gt;
|308&lt;br /&gt;
|{{TM|1RB1RC---_1LB1RA2RB_0RB2LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2)&lt;br /&gt;
|32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5,2)&lt;br /&gt;
|32,810,047&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6,2)&lt;br /&gt;
|65,538,549&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function#Instruction-limited Blanking Busy Beaver (BLBi(n))|Blanking instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2)&lt;br /&gt;
|19&lt;br /&gt;
|{{TM|1RB1RA_0RC---_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2,1)&lt;br /&gt;
|32&lt;br /&gt;
|{{TM|1RB---_1LC---_0LD0LC_1RD0RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2,1)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(5)&lt;br /&gt;
|23&lt;br /&gt;
|{{TM|1RB------_0RC------_1LC2LB0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(6)&lt;br /&gt;
|66&lt;br /&gt;
|{{TM|1RB------_1LB0LC---_1RC2RA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(7)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(8)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(9)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBws(2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(3)&lt;br /&gt;
|20&lt;br /&gt;
|{{TM|1RB---_0LC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(4)&lt;br /&gt;
|53&lt;br /&gt;
|{{TM|1RB1LB_1LC1RD_1RA1LA_---0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(5)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move and write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol and go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(4)&lt;br /&gt;
|29&lt;br /&gt;
|{{TM|1RB1RD_0LC0LA_1LC1LA_0RC---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(5)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Reversible Turing Machine|Reversible]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol reversible Turing machine with k+1 instructions transitions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|0RB---_1LA1RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|0RB---_0LC1RA_1RB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(4,2)&lt;br /&gt;
|48&lt;br /&gt;
|{{TM|1RB0LD_0LC0RB_1LA1LD_1LC---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(5,2)&lt;br /&gt;
|388&lt;br /&gt;
|{{TM|1RB0RD_1RC0RB_1RD---_1LE1LA_0LE0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(6,2)&lt;br /&gt;
|537,556&lt;br /&gt;
|{{TM|1RB1LD_1LC1RE_0LD0LC_0RE0RF_0RA---_1RF1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(7,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{19}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LD_0LC0LD_1LC1LA_0LA1RE_0RF0RE_0RG1RF_0RB---|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Maximum Consecutive Ones Function|Consecutive ones]] ===&lt;br /&gt;
Maximum number of consecutive 1s left on the tape by a n-state, m-symbol Turing machine with k+1 undefined instructions after halting. TMs must leave all their 1s consecutively.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2,1)&lt;br /&gt;
|2&lt;br /&gt;
|{{TM|1RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LC_1RC---_1LA0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,3)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB0LA_1RC1LB_1LB1RD_---0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,3)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB1RA---_1LC1LC2LA_2RA1LB1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(5,2)&lt;br /&gt;
|165&lt;br /&gt;
|{{TM|1RB1LA_1RC1LE_1RD1RE_0LA1RC_---0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler preperiod|Preperiodic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before turning into a translated cycler.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB---_1LB0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0LB_1LA0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(3,2)&lt;br /&gt;
|101&lt;br /&gt;
|{{TM|1RB1LB_0RC0LA_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(4,2)&lt;br /&gt;
|119,120,230,102&lt;br /&gt;
|{{TM|1RB1LC_0LA1RD_0RB0LC_1LA0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;2 \times 10^{23}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA1RA1LB_0LB2RB3RB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|&amp;lt;math&amp;gt;5.418 \times 10^{51}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{14,006}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_0LC0LB_0LD1LC_1RD1RA_0RC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0LB2LA_1LA0RC0LB_2RC2RB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler period|Periodic]] ===&lt;br /&gt;
Maximum translated cycler period done by a n-state, m-symbol Turing Machine with k undefined instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0RB_1LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,2)&lt;br /&gt;
|92&lt;br /&gt;
|{{TM|1RB0LA_0RC1LA_1LC0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|1,195&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,4)&lt;br /&gt;
|33,209,131&lt;br /&gt;
|{{TM|1RB0RA3LB1RB_2LA0LB1RA2RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(4,2)&lt;br /&gt;
|212,081,736&lt;br /&gt;
|{{TM|1RB0LA_0RC1RD_1LD0RB_1LA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|8,468,569,863&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Turing machine variations ==&lt;br /&gt;
&lt;br /&gt;
=== [[Terminating Turmite|Turmite]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k+1 undefined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2,1)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PC0PB_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0PC_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2,1)&lt;br /&gt;
|139&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PD0TC_---0TA_1TA1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3,1)&lt;br /&gt;
|683&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA---_1PC1PB0TC_2PA1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2)&lt;br /&gt;
|758&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_0PD1PB_1PA1TA_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,4)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite instructions ===&lt;br /&gt;
Maximum number of steps done by a Turmite machine with n defined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTi(2)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(3)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(4)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(5)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(7)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(8)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turmite machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_1TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2TB---_1TA0PB0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1PC1TC_1TB0PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB0PC_1PC0TA_1TB1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4,1)&lt;br /&gt;
|44&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PB0PB---_2TB2TA3TA1TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2,1)&lt;br /&gt;
|48&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PC_0TB1TD_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,2)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,1)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---1TC_2PC1TA0PB_2TB2TC2PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3)&lt;br /&gt;
|134&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PC2TB_1TC0TA0PB_2TC1TA2TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2)&lt;br /&gt;
|166&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_0PC0TA_0PD0PB_1TB1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turmite machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTti(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(4)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_1TC1PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(5)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_0PD---_1TC0TD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(6)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(7)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(8)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2,1)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PC0TC_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2,1)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2)&lt;br /&gt;
|267&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TD_1PC0PA_0PA0TD_1PD0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,4)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,3)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(3)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(4)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(6)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(8)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(9)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol turmite machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2,1)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PC_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PC0PA_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2,1)&lt;br /&gt;
|30&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_1PD0PC_0PA---_0PB---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(3)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(4)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(5)&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TA_2PB0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(6)&lt;br /&gt;
|36&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TC_2PB0PA---_0TB------&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(7)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Lambda calculus ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for SKI calculus#SK calculus|SK calculus]] ===&lt;br /&gt;
Maximum normal form size of any closed SK term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;SSSS&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(6)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(7)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(S(SKS))S&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BCKW calculus ===&lt;br /&gt;
Maximum normal form size of any closed BCKW term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;BBB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(4)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(5)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BBB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(6)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(7)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BBB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(WB(BB)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for lambda calculus#De Bruijn|De Bruijn]] ===&lt;br /&gt;
Maximum normal form size of any closed lambda term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBL(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(9)&lt;br /&gt;
|68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(10)&lt;br /&gt;
|&amp;lt;math&amp;gt;7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(12)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(13)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(15)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(18)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^\omega}}(10^{19,727})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\\\1 (\\2 (2 1)) 3 2 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\zeta_0}(15)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(24)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\psi(\Omega_\omega)}(12)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(25)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\psi(\Omega_\omega)}(f_{\omega^{\omega+2}}(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(26)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\psi(\Omega_\omega+1)}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tag system ==&lt;br /&gt;
&lt;br /&gt;
=== 2-tag system ===&lt;br /&gt;
Maximum number of transformations performed with a 2-tag system of size n. Its size if the sum of the number of letters and the number of different letters.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(4)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(5)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(6)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(7)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(8)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(9)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(11)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(12)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bc, a, aaa&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Cyclic tag ===&lt;br /&gt;
Maximum number of transformations that can be done with a cyclic tag system of size n. Its size if the sum of the number of bits and the number of instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(6)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(7)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(9)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(10)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 0000&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tree rewriting ===&lt;br /&gt;
Maximum number of transformations that can be done with a tree rewriting system of size n. Its size if the number of brackets.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: () P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(4)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(5)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(8)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(14)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()(()) P: (()) &amp;gt; ((())), ()()() &amp;gt; _, () &amp;gt; ()()&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(23)&lt;br /&gt;
|672&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: ()() &amp;gt; (()())(), ()() &amp;gt; ()()(()), () &amp;gt; (()), (((()))) &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(38)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 10 \uparrow 54&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: (())(()()) P: (()()) &amp;gt; (()())(()), (()()) &amp;gt; (()())(()), ()(()) &amp;gt; (())((())), ((())) &amp;gt; ((()))()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(45)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 130&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((())) P: ((())) &amp;gt; ((()))(()()), (()()) &amp;gt; (()())(()), (()) &amp;gt; (())(()()()), (()()()) &amp;gt; (()()())()(), ()()() &amp;gt; _, () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(69)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((()())) P: ((()())) &amp;gt; ((()()))((())), ((())) &amp;gt; ((()))(()()()), ((())) &amp;gt; ((()))(()()()), (()()()) &amp;gt; (()()())(()()), (()()) &amp;gt; (()())(())(()), (()) &amp;gt; (())()()()()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Fractran ==&lt;br /&gt;
&lt;br /&gt;
=== [[Fractran]] ===&lt;br /&gt;
Maximum number of instructions applied by a fractran program of size n before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBf(10)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;[729/2, 1/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(11)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;[27/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(12)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(13)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(14)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;[243/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(15)&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 25/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(16)&lt;br /&gt;
|53&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 125/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(17)&lt;br /&gt;
|107&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 40/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(18)&lt;br /&gt;
|211&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 80/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(19)&lt;br /&gt;
|370&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 160/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(20)&lt;br /&gt;
|746&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 22/3, 6/77, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(21)&lt;br /&gt;
|31,957,632&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 4/3, 27/14, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.146 \times 10^{62}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/12, 9/10, 14/3, 11/2, 5/7, 3/11]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Brainfuck ==&lt;br /&gt;
&lt;br /&gt;
=== Brainfuck ===&lt;br /&gt;
Maximum number of instructions read by a brainfuck program with n instructions (uses &amp;lt;code&amp;gt;+-&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols). Cells size are unbounded and can have negative values.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;++++++&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[-]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(8)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;+++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(9)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(10)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;+++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(11)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;+[[&amp;gt;]-&amp;lt;+&amp;lt;+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Boolfuck ===&lt;br /&gt;
Maximum number of instructions read by a boolfuck program with n instructions (uses &amp;lt;code&amp;gt;*&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(10)&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(11)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(12)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(13)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(14)&lt;br /&gt;
|58&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+[&amp;lt;+&amp;lt;+[&amp;gt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(17)&lt;br /&gt;
|109&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(19)&lt;br /&gt;
|112&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(20)&lt;br /&gt;
|180&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(22)&lt;br /&gt;
|183&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(23)&lt;br /&gt;
|269&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BitChanger ===&lt;br /&gt;
Maximum number of instructions read by a bitchanger program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;}[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(9)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(10)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(11)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(12)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitter ===&lt;br /&gt;
Maximum number of instructions read by a bitter program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(11)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(12)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Minsky machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Register machine|Minsky machines]] ===&lt;br /&gt;
Maximum number of steps done by a Minsky machine before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|MBB(1)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;0+*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(2)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(3)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0+C_0-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(4)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1+C_0-BD_1-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;0-DB_0+C_1-ED_1+A_1-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(6)&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1-FC_1+D_0-CE_0+A_1-A*&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=6073</id>
		<title>User:Azerty/Busy Beaver Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=6073"/>
		<updated>2026-01-23T09:58:42Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* De Bruijn */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of Busy Beaver functions for Turing machines and other simple Turing-complete systems and their current lower bounds.&lt;br /&gt;
&lt;br /&gt;
I only add functions that meet the requirements below:&lt;br /&gt;
&lt;br /&gt;
* The function must grow uncomputably fast, like BB(n).&lt;br /&gt;
* The function must not have similar champions to other function, like Σ(n).&lt;br /&gt;
* The function must not be arbitrary complex.&lt;br /&gt;
&lt;br /&gt;
== Turing machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver Functions|Classic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2)|BB(2,2)]]&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,3,1)&lt;br /&gt;
|14&lt;br /&gt;
|{{TM|0RB---1LB_1LA2RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3)|BB(3,2)]]&lt;br /&gt;
|21&lt;br /&gt;
|{{TM|1RB---_1LB0RC_1LC1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,3)]]&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(4,2,1)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB---_1LB0LC_1RD1LD_0RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,2)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB---0RC_2LC------_2RC0LC1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4)|BB(4,2)]]&lt;br /&gt;
|107&lt;br /&gt;
|{{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,4,1)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(5,2,1)&lt;br /&gt;
|242&lt;br /&gt;
|{{TM|1RB0LA_1RC0LA_1LD0RE_---1LA_---0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,4)]]&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,1)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA_1LC1LA2RB_---1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(5)|BB(5,2)]]&lt;br /&gt;
|47,176,870&lt;br /&gt;
|{{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(6,2,1)&lt;br /&gt;
|17,397,627,083&lt;br /&gt;
|{{TM|1RB0LA_1RC1RD_1LB1RA_---0RE_1LF0RC_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;1.191 \times 10^{17}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,5)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,6)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10^{10^{115}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3RB5RA1LB5LA2LB_2LA2RA4RB---3LB2LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(6)|BB(6,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_1RC---_1LD0RF_1RA0LE_0LD1RC_1RA0RE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10^{28}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(7)|BB(7,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{11} 10 \uparrow^{10} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LC1LF_1RD0LB_1RA1LE_---0LC_1RG1LD_0RG0RF|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,4)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(9,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega(10 \uparrow^{7} 10 \uparrow^{7} 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_1LB0LH|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,5)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(10,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(11,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(12,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(15,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(16,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,7)]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Instruction-Limited Busy Beaver|Instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(5)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(6)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(7)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(9)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(29)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(31)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turing machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB---2RB_2LB2RA0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2,1)&lt;br /&gt;
|11&lt;br /&gt;
|{{TM|1RB---_0RC0RB_1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|0RB0LB_0RC1RC_1LA0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB0RA0RB_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4,1)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB3RA0RB0RA_2LA2RB1LB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4)&lt;br /&gt;
|49&lt;br /&gt;
|{{TM|1RB2RA2RB2LA_2LB0RA3RB0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2,1)&lt;br /&gt;
|55&lt;br /&gt;
|{{TM|0RB---_1RC0LD_1RD1RB_1LB0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2)&lt;br /&gt;
|63&lt;br /&gt;
|{{TM|0RB0LD_0RC1LC_0RD1LA_1LB1RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(5,2,1)&lt;br /&gt;
|70&lt;br /&gt;
|{{TM|0RB---_0RC1LC_1RD0RE_1RE1RD_1LE1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3,2)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3)&lt;br /&gt;
|202&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,3,2)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turing machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBti(3)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(4)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(5)&lt;br /&gt;
|18&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(6)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB------_1RC------_1RD------_2LD2RD0RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(7)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(8)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function|Blanking]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2,1)&lt;br /&gt;
|16&lt;br /&gt;
|{{TM|1RB---_1LC0LC_1RC0LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3,1)&lt;br /&gt;
|22&lt;br /&gt;
|{{TM|1RB2LB---_2LA0RB1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2)&lt;br /&gt;
|34&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2,1)&lt;br /&gt;
|169&lt;br /&gt;
|{{TM|1RB---_0RC0LA_1LC1LD_0RB0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,2)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,1)&lt;br /&gt;
|308&lt;br /&gt;
|{{TM|1RB1RC---_1LB1RA2RB_0RB2LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2)&lt;br /&gt;
|32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5,2)&lt;br /&gt;
|32,810,047&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6,2)&lt;br /&gt;
|65,538,549&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function#Instruction-limited Blanking Busy Beaver (BLBi(n))|Blanking instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2)&lt;br /&gt;
|19&lt;br /&gt;
|{{TM|1RB1RA_0RC---_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2,1)&lt;br /&gt;
|32&lt;br /&gt;
|{{TM|1RB---_1LC---_0LD0LC_1RD0RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2,1)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(5)&lt;br /&gt;
|23&lt;br /&gt;
|{{TM|1RB------_0RC------_1LC2LB0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(6)&lt;br /&gt;
|66&lt;br /&gt;
|{{TM|1RB------_1LB0LC---_1RC2RA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(7)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(8)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(9)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBws(2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(3)&lt;br /&gt;
|20&lt;br /&gt;
|{{TM|1RB---_0LC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(4)&lt;br /&gt;
|53&lt;br /&gt;
|{{TM|1RB1LB_1LC1RD_1RA1LA_---0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(5)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move and write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol and go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(4)&lt;br /&gt;
|29&lt;br /&gt;
|{{TM|1RB1RD_0LC0LA_1LC1LA_0RC---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(5)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Reversible Turing Machine|Reversible]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol reversible Turing machine with k+1 instructions transitions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|0RB---_1LA1RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|0RB---_0LC1RA_1RB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(4,2)&lt;br /&gt;
|48&lt;br /&gt;
|{{TM|1RB0LD_0LC0RB_1LA1LD_1LC---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(5,2)&lt;br /&gt;
|388&lt;br /&gt;
|{{TM|1RB0RD_1RC0RB_1RD---_1LE1LA_0LE0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(6,2)&lt;br /&gt;
|537,556&lt;br /&gt;
|{{TM|1RB1LD_1LC1RE_0LD0LC_0RE0RF_0RA---_1RF1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(7,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{19}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LD_0LC0LD_1LC1LA_0LA1RE_0RF0RE_0RG1RF_0RB---|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Maximum Consecutive Ones Function|Consecutive ones]] ===&lt;br /&gt;
Maximum number of consecutive 1s left on the tape by a n-state, m-symbol Turing machine with k+1 undefined instructions after halting. TMs must leave all their 1s consecutively.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2,1)&lt;br /&gt;
|2&lt;br /&gt;
|{{TM|1RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LC_1RC---_1LA0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,3)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB0LA_1RC1LB_1LB1RD_---0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,3)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB1RA---_1LC1LC2LA_2RA1LB1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(5,2)&lt;br /&gt;
|165&lt;br /&gt;
|{{TM|1RB1LA_1RC1LE_1RD1RE_0LA1RC_---0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler preperiod|Preperiodic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before turning into a translated cycler.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB---_1LB0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0LB_1LA0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(3,2)&lt;br /&gt;
|101&lt;br /&gt;
|{{TM|1RB1LB_0RC0LA_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(4,2)&lt;br /&gt;
|119,120,230,102&lt;br /&gt;
|{{TM|1RB1LC_0LA1RD_0RB0LC_1LA0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;2 \times 10^{23}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA1RA1LB_0LB2RB3RB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|&amp;lt;math&amp;gt;5.418 \times 10^{51}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{14,006}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_0LC0LB_0LD1LC_1RD1RA_0RC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0LB2LA_1LA0RC0LB_2RC2RB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler period|Periodic]] ===&lt;br /&gt;
Maximum translated cycler period done by a n-state, m-symbol Turing Machine with k undefined instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0RB_1LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,2)&lt;br /&gt;
|92&lt;br /&gt;
|{{TM|1RB0LA_0RC1LA_1LC0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|1,195&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,4)&lt;br /&gt;
|33,209,131&lt;br /&gt;
|{{TM|1RB0RA3LB1RB_2LA0LB1RA2RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(4,2)&lt;br /&gt;
|212,081,736&lt;br /&gt;
|{{TM|1RB0LA_0RC1RD_1LD0RB_1LA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|8,468,569,863&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Turing machine variations ==&lt;br /&gt;
&lt;br /&gt;
=== [[Terminating Turmite|Turmite]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k+1 undefined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2,1)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PC0PB_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0PC_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2,1)&lt;br /&gt;
|139&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PD0TC_---0TA_1TA1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3,1)&lt;br /&gt;
|683&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA---_1PC1PB0TC_2PA1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2)&lt;br /&gt;
|758&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_0PD1PB_1PA1TA_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,4)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite instructions ===&lt;br /&gt;
Maximum number of steps done by a Turmite machine with n defined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTi(2)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(3)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(4)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(5)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(7)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(8)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turmite machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_1TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2TB---_1TA0PB0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1PC1TC_1TB0PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB0PC_1PC0TA_1TB1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4,1)&lt;br /&gt;
|44&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PB0PB---_2TB2TA3TA1TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2,1)&lt;br /&gt;
|48&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PC_0TB1TD_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,2)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,1)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---1TC_2PC1TA0PB_2TB2TC2PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3)&lt;br /&gt;
|134&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PC2TB_1TC0TA0PB_2TC1TA2TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2)&lt;br /&gt;
|166&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_0PC0TA_0PD0PB_1TB1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turmite machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTti(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(4)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_1TC1PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(5)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_0PD---_1TC0TD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(6)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(7)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(8)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2,1)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PC0TC_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2,1)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2)&lt;br /&gt;
|267&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TD_1PC0PA_0PA0TD_1PD0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,4)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,3)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(3)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(4)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(6)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(8)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(9)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol turmite machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2,1)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PC_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PC0PA_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2,1)&lt;br /&gt;
|30&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_1PD0PC_0PA---_0PB---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(3)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(4)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(5)&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TA_2PB0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(6)&lt;br /&gt;
|36&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TC_2PB0PA---_0TB------&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(7)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Lambda calculus ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for SKI calculus#SK calculus|SK calculus]] ===&lt;br /&gt;
Maximum normal form size of any closed SK term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;SSSS&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(6)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(7)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(S(SKS))S&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BCKW calculus ===&lt;br /&gt;
Maximum normal form size of any closed BCKW term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;BBB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(4)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(5)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BBB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(6)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(7)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BBB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(WB(BB)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for lambda calculus#De Bruijn|De Bruijn]] ===&lt;br /&gt;
Maximum normal form size of any closed lambda term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBL(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(9)&lt;br /&gt;
|68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(10)&lt;br /&gt;
|&amp;lt;math&amp;gt;7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(12)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(13)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(15)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(18)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^\omega}}(10^{19,727})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\\\1 (\\2 (2 1)) 3 2 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^\omega}}(f_{\omega^{\omega+2}}(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(24)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\zeta_0}(15)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(25)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\psi(\Omega_\omega)}(12)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(26)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\psi(\Omega_\omega)}(f_{\omega^{\omega+2}}(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\psi(\Omega_\omega+1)}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tag system ==&lt;br /&gt;
&lt;br /&gt;
=== 2-tag system ===&lt;br /&gt;
Maximum number of transformations performed with a 2-tag system of size n. Its size if the sum of the number of letters and the number of different letters.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(4)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(5)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(6)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(7)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(8)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(9)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(11)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(12)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bc, a, aaa&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Cyclic tag ===&lt;br /&gt;
Maximum number of transformations that can be done with a cyclic tag system of size n. Its size if the sum of the number of bits and the number of instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(6)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(7)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(9)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(10)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 0000&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tree rewriting ===&lt;br /&gt;
Maximum number of transformations that can be done with a tree rewriting system of size n. Its size if the number of brackets.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: () P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(4)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(5)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(8)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(14)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()(()) P: (()) &amp;gt; ((())), ()()() &amp;gt; _, () &amp;gt; ()()&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(23)&lt;br /&gt;
|672&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: ()() &amp;gt; (()())(), ()() &amp;gt; ()()(()), () &amp;gt; (()), (((()))) &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(38)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 10 \uparrow 54&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: (())(()()) P: (()()) &amp;gt; (()())(()), (()()) &amp;gt; (()())(()), ()(()) &amp;gt; (())((())), ((())) &amp;gt; ((()))()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(45)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 130&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((())) P: ((())) &amp;gt; ((()))(()()), (()()) &amp;gt; (()())(()), (()) &amp;gt; (())(()()()), (()()()) &amp;gt; (()()())()(), ()()() &amp;gt; _, () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(69)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((()())) P: ((()())) &amp;gt; ((()()))((())), ((())) &amp;gt; ((()))(()()()), ((())) &amp;gt; ((()))(()()()), (()()()) &amp;gt; (()()())(()()), (()()) &amp;gt; (()())(())(()), (()) &amp;gt; (())()()()()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Fractran ==&lt;br /&gt;
&lt;br /&gt;
=== [[Fractran]] ===&lt;br /&gt;
Maximum number of instructions applied by a fractran program of size n before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBf(10)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;[729/2, 1/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(11)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;[27/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(12)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(13)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(14)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;[243/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(15)&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 25/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(16)&lt;br /&gt;
|53&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 125/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(17)&lt;br /&gt;
|107&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 40/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(18)&lt;br /&gt;
|211&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 80/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(19)&lt;br /&gt;
|370&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 160/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(20)&lt;br /&gt;
|746&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 22/3, 6/77, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(21)&lt;br /&gt;
|31,957,632&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 4/3, 27/14, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.146 \times 10^{62}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/12, 9/10, 14/3, 11/2, 5/7, 3/11]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Brainfuck ==&lt;br /&gt;
&lt;br /&gt;
=== Brainfuck ===&lt;br /&gt;
Maximum number of instructions read by a brainfuck program with n instructions (uses &amp;lt;code&amp;gt;+-&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols). Cells size are unbounded and can have negative values.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;++++++&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[-]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(8)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;+++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(9)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(10)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;+++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(11)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;+[[&amp;gt;]-&amp;lt;+&amp;lt;+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Boolfuck ===&lt;br /&gt;
Maximum number of instructions read by a boolfuck program with n instructions (uses &amp;lt;code&amp;gt;*&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(10)&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(11)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(12)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(13)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(14)&lt;br /&gt;
|58&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+[&amp;lt;+&amp;lt;+[&amp;gt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(17)&lt;br /&gt;
|109&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(19)&lt;br /&gt;
|112&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(20)&lt;br /&gt;
|180&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(22)&lt;br /&gt;
|183&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(23)&lt;br /&gt;
|269&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BitChanger ===&lt;br /&gt;
Maximum number of instructions read by a bitchanger program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;}[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(9)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(10)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(11)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(12)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitter ===&lt;br /&gt;
Maximum number of instructions read by a bitter program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(11)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(12)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Minsky machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Register machine|Minsky machines]] ===&lt;br /&gt;
Maximum number of steps done by a Minsky machine before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|MBB(1)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;0+*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(2)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(3)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0+C_0-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(4)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1+C_0-BD_1-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;0-DB_0+C_1-ED_1+A_1-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(6)&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1-FC_1+D_0-CE_0+A_1-A*&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=TMBR:_January_2026&amp;diff=6066</id>
		<title>TMBR: January 2026</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=TMBR:_January_2026&amp;diff=6066"/>
		<updated>2026-01-18T09:48:30Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* Champions */ I didn&amp;#039;t find these BLB and TT champions.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TMBRnav|December 2025|February 2026}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This edition of TMBR is in progress and has not yet been released. Please add any notes you think may be relevant (including in the form a of a TODO with a link to any relevant Discord discussion).&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This is the first edition of TMBR in 2026.&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
&lt;br /&gt;
* nickdrozd discovered a new [[BLB|BLB(3,3)]] [[champion]] ({{TM|1RB2RB1LA_2LC0LB2LB_2RC2RA0LC}}) which blanks the tape after running for more than 10&amp;lt;sup&amp;gt;42,745&amp;lt;/sup&amp;gt; steps.&lt;br /&gt;
* creeperman7002 discovered &amp;lt;code&amp;gt;1TB1PA_1PC0PA_1TA0PD_---1TA&amp;lt;/code&amp;gt;, a [[TT|TT(4,2)]] TM which runs for 48,186 steps and &amp;lt;code&amp;gt;1TA2PB3TB---_3TA1PB1TA1PA&amp;lt;/code&amp;gt;, a [[TT|TT(2,4)]] TM which runs for more than 3.467*10&amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt; steps.&lt;br /&gt;
* A new lower bound of &amp;lt;math&amp;gt;f_{\varepsilon_0 \omega^{\omega^{3}}}\left(4\right)&amp;lt;/math&amp;gt; was computed for the [[Busy Beaver for lambda calculus#Champions|BBλ(91)]] champion.&lt;br /&gt;
&lt;br /&gt;
== Blog Posts ==&lt;br /&gt;
&lt;br /&gt;
* 16 Jan 2026. Nick Drozd. [https://nickdrozd.github.io/2026/01/16/ai-lin-busy-beaver.html AI Reproduction of Lin&#039;s Busy Beaver Proof].&lt;br /&gt;
&lt;br /&gt;
== BB Adjacent ==&lt;br /&gt;
&lt;br /&gt;
* [https://discord.com/channels/960643023006490684/1458010522967609425/1458010522967609425 Uniform-Action Busy Beavers] were introduced, and lower bounds have been given up to BBu(6) (with BBu(2)=6, BBu(3)=17 and BBu(4)=29)&lt;br /&gt;
&lt;br /&gt;
== Theory ==&lt;br /&gt;
@ConePine [https://discord.com/channels/960643023006490684/960643023530762341/1458876275749032232 shared an idea] on how the value of BB(5) can be proved without enumerating Turing machines.&lt;br /&gt;
&lt;br /&gt;
== Holdouts ==&lt;br /&gt;
&lt;br /&gt;
* [[BB(6)]]: &#039;&#039;&#039;2&#039;&#039;&#039; solved machines.&lt;br /&gt;
** Progress has been made in reducing the list of machines not simulated up to 1e13, by Alistaire: see [https://docs.google.com/spreadsheets/d/1mMp8bAcTFT91j7azn72liX8NSTwc2E_ozKnOGTfRCfw/edit?gid=806905077#gid=806905077 spreadsheet]. Current count: &#039;&#039;&#039;210&#039;&#039;&#039;. (Total reduction: &#039;&#039;&#039;68&#039;&#039;&#039;. 38 machines&amp;lt;sup&amp;gt;[https://discord.com/channels/960643023006490684/1456755170527543420/1456755170527543420 &amp;lt;nowiki&amp;gt;[1]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1456757189787127971/1456757189787127971 &amp;lt;nowiki&amp;gt;[2]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1456757980203585678/1456757980203585678 &amp;lt;nowiki&amp;gt;[3]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1456758622762696815/1456758622762696815 &amp;lt;nowiki&amp;gt;[4]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1456759118818971709/1456759118818971709 &amp;lt;nowiki&amp;gt;[5]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1456761765688901724/1456761765688901724 &amp;lt;nowiki&amp;gt;[6]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1456762231491657830/1456762231491657830 &amp;lt;nowiki&amp;gt;[7]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1456310285462802587/1456760768472289321 &amp;lt;nowiki&amp;gt;[8]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1239205785913790465/1456932659740545217 &amp;lt;nowiki&amp;gt;[9]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1239205785913790465/1456933097009320089 &amp;lt;nowiki&amp;gt;[10]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1239205785913790465/1456933714629099593 &amp;lt;nowiki&amp;gt;[11]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1239205785913790465/1456934113943621653 &amp;lt;nowiki&amp;gt;[12]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1239205785913790465/1457147385309565021 &amp;lt;nowiki&amp;gt;[13]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1239205785913790465/1457409447084429594 &amp;lt;nowiki&amp;gt;[11 more]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1239205785913790465/1457497643478683770 &amp;lt;nowiki&amp;gt;[4 more]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1239205785913790465/1457644806984437760 &amp;lt;nowiki&amp;gt;[10 more]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1239205785913790465/1457992404597739672 &amp;lt;nowiki&amp;gt;[11 more]&amp;lt;/nowiki&amp;gt;][https://discord.com/channels/960643023006490684/1239205785913790465/1458413343088840734 &amp;lt;nowiki&amp;gt;[17 more]&amp;lt;/nowiki&amp;gt;]&amp;lt;/sup&amp;gt; simulated out, plus 2 solved machines).&lt;br /&gt;
** Alistaire found a halting machine in the list mentioned above, see [https://discord.com/channels/960643023006490684/1239205785913790465/1456317703156531211 Discord].  Approximate score: 4e12. Later, he found another halting machine in the same list, see [https://discord.com/channels/960643023006490684/1239205785913790465/1456381492019069192 Discord] - approximate score: 1.5e18.&lt;br /&gt;
** @mxdys shared a list of machines that seem to be provable. See [https://discord.com/channels/960643023006490684/1460495597386731643/1460495597386731643 Discord].&lt;br /&gt;
*[[BB(7)]]: &lt;br /&gt;
**Andrew Ducharme further continued reducing the number of holdouts, from 20,387,509 to &#039;&#039;&#039;20,197,978&#039;&#039;&#039; TMs, a 0.93% reduction. This puts the total compute time on the current BB(7) pipeline just over &#039;&#039;&#039;50,000&#039;&#039;&#039; hours.&amp;lt;sup&amp;gt;[https://discord.com/channels/960643023006490684/1369339127652159509/1459719965396566078]&amp;lt;/sup&amp;gt;&lt;br /&gt;
**The holdout count was further reduced to &#039;&#039;&#039;19,879,953&#039;&#039;&#039; (a 1.57% reduction), which breaks the 20 million barrier.&amp;lt;sup&amp;gt;[https://discord.com/channels/960643023006490684/1369339127652159509/1460718041577951365]&amp;lt;/sup&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:This Month in Beaver Research|2025-12]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=6051</id>
		<title>User:Azerty/Busy Beaver Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=6051"/>
		<updated>2026-01-16T08:11:34Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* De Bruijn */ Added BO champions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of Busy Beaver functions for Turing machines and other simple Turing-complete systems and their current lower bounds.&lt;br /&gt;
&lt;br /&gt;
I only add functions that meet the requirements below:&lt;br /&gt;
&lt;br /&gt;
* The function must grow uncomputably fast, like BB(n).&lt;br /&gt;
* The function must not have similar champions to other function, like Σ(n).&lt;br /&gt;
* The function must not be arbitrary complex.&lt;br /&gt;
&lt;br /&gt;
== Turing machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver Functions|Classic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2)|BB(2,2)]]&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,3,1)&lt;br /&gt;
|14&lt;br /&gt;
|{{TM|0RB---1LB_1LA2RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3)|BB(3,2)]]&lt;br /&gt;
|21&lt;br /&gt;
|{{TM|1RB---_1LB0RC_1LC1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,3)]]&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(4,2,1)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB---_1LB0LC_1RD1LD_0RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,2)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB---0RC_2LC------_2RC0LC1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4)|BB(4,2)]]&lt;br /&gt;
|107&lt;br /&gt;
|{{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,4,1)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(5,2,1)&lt;br /&gt;
|242&lt;br /&gt;
|{{TM|1RB0LA_1RC0LA_1LD0RE_---1LA_---0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,4)]]&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,1)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA_1LC1LA2RB_---1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(5)|BB(5,2)]]&lt;br /&gt;
|47,176,870&lt;br /&gt;
|{{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(6,2,1)&lt;br /&gt;
|17,397,627,083&lt;br /&gt;
|{{TM|1RB0LA_1RC1RD_1LB1RA_---0RE_1LF0RC_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;1.191 \times 10^{17}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,5)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,6)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10^{10^{115}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3RB5RA1LB5LA2LB_2LA2RA4RB---3LB2LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(6)|BB(6,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_1RC---_1LD0RF_1RA0LE_0LD1RC_1RA0RE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10^{28}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(7)|BB(7,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{11} 10 \uparrow^{10} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LC1LF_1RD0LB_1RA1LE_---0LC_1RG1LD_0RG0RF|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,4)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(9,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega(10 \uparrow^{7} 10 \uparrow^{7} 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_1LB0LH|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,5)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(10,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(11,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(12,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(15,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(16,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,7)]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Instruction-Limited Busy Beaver|Instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(5)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(6)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(7)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(9)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(29)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(31)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turing machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB---2RB_2LB2RA0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2,1)&lt;br /&gt;
|11&lt;br /&gt;
|{{TM|1RB---_0RC0RB_1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|0RB0LB_0RC1RC_1LA0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB0RA0RB_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4,1)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB3RA0RB0RA_2LA2RB1LB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4)&lt;br /&gt;
|49&lt;br /&gt;
|{{TM|1RB2RA2RB2LA_2LB0RA3RB0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2,1)&lt;br /&gt;
|55&lt;br /&gt;
|{{TM|0RB---_1RC0LD_1RD1RB_1LB0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2)&lt;br /&gt;
|63&lt;br /&gt;
|{{TM|0RB0LD_0RC1LC_0RD1LA_1LB1RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(5,2,1)&lt;br /&gt;
|70&lt;br /&gt;
|{{TM|0RB---_0RC1LC_1RD0RE_1RE1RD_1LE1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3,2)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3)&lt;br /&gt;
|202&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,3,2)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turing machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBti(3)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(4)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(5)&lt;br /&gt;
|18&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(6)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB------_1RC------_1RD------_2LD2RD0RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(7)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(8)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function|Blanking]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2,1)&lt;br /&gt;
|16&lt;br /&gt;
|{{TM|1RB---_1LC0LC_1RC0LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3,1)&lt;br /&gt;
|22&lt;br /&gt;
|{{TM|1RB2LB---_2LA0RB1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2)&lt;br /&gt;
|34&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2,1)&lt;br /&gt;
|169&lt;br /&gt;
|{{TM|1RB---_0RC0LA_1LC1LD_0RB0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,2)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,1)&lt;br /&gt;
|308&lt;br /&gt;
|{{TM|1RB1RC---_1LB1RA2RB_0RB2LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2)&lt;br /&gt;
|32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5,2)&lt;br /&gt;
|32,810,047&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6,2)&lt;br /&gt;
|65,538,549&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function#Instruction-limited Blanking Busy Beaver (BLBi(n))|Blanking instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2)&lt;br /&gt;
|19&lt;br /&gt;
|{{TM|1RB1RA_0RC---_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2,1)&lt;br /&gt;
|32&lt;br /&gt;
|{{TM|1RB---_1LC---_0LD0LC_1RD0RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2,1)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(5)&lt;br /&gt;
|23&lt;br /&gt;
|{{TM|1RB------_0RC------_1LC2LB0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(6)&lt;br /&gt;
|66&lt;br /&gt;
|{{TM|1RB------_1LB0LC---_1RC2RA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(7)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(8)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(9)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBws(2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(3)&lt;br /&gt;
|20&lt;br /&gt;
|{{TM|1RB---_0LC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(4)&lt;br /&gt;
|53&lt;br /&gt;
|{{TM|1RB1LB_1LC1RD_1RA1LA_---0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(5)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move and write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol and go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(4)&lt;br /&gt;
|29&lt;br /&gt;
|{{TM|1RB1RD_0LC0LA_1LC1LA_0RC---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(5)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Reversible Turing Machine|Reversible]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol reversible Turing machine with k+1 instructions transitions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|0RB---_1LA1RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|0RB---_0LC1RA_1RB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(4,2)&lt;br /&gt;
|48&lt;br /&gt;
|{{TM|1RB0LD_0LC0RB_1LA1LD_1LC---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(5,2)&lt;br /&gt;
|388&lt;br /&gt;
|{{TM|1RB0RD_1RC0RB_1RD---_1LE1LA_0LE0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(6,2)&lt;br /&gt;
|537,556&lt;br /&gt;
|{{TM|1RB1LD_1LC1RE_0LD0LC_0RE0RF_0RA---_1RF1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(7,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{19}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LD_0LC0LD_1LC1LA_0LA1RE_0RF0RE_0RG1RF_0RB---|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Maximum Consecutive Ones Function|Consecutive ones]] ===&lt;br /&gt;
Maximum number of consecutive 1s left on the tape by a n-state, m-symbol Turing machine with k+1 undefined instructions after halting. TMs must leave all their 1s consecutively.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2,1)&lt;br /&gt;
|2&lt;br /&gt;
|{{TM|1RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LC_1RC---_1LA0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,3)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB0LA_1RC1LB_1LB1RD_---0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,3)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB1RA---_1LC1LC2LA_2RA1LB1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(5,2)&lt;br /&gt;
|165&lt;br /&gt;
|{{TM|1RB1LA_1RC1LE_1RD1RE_0LA1RC_---0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler preperiod|Preperiodic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before turning into a translated cycler.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB---_1LB0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0LB_1LA0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(3,2)&lt;br /&gt;
|101&lt;br /&gt;
|{{TM|1RB1LB_0RC0LA_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(4,2)&lt;br /&gt;
|119,120,230,102&lt;br /&gt;
|{{TM|1RB1LC_0LA1RD_0RB0LC_1LA0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;2 \times 10^{23}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA1RA1LB_0LB2RB3RB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|&amp;lt;math&amp;gt;5.418 \times 10^{51}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{14,006}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_0LC0LB_0LD1LC_1RD1RA_0RC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0LB2LA_1LA0RC0LB_2RC2RB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler period|Periodic]] ===&lt;br /&gt;
Maximum translated cycler period done by a n-state, m-symbol Turing Machine with k undefined instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0RB_1LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,2)&lt;br /&gt;
|92&lt;br /&gt;
|{{TM|1RB0LA_0RC1LA_1LC0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|1,195&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,4)&lt;br /&gt;
|33,209,131&lt;br /&gt;
|{{TM|1RB0RA3LB1RB_2LA0LB1RA2RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(4,2)&lt;br /&gt;
|212,081,736&lt;br /&gt;
|{{TM|1RB0LA_0RC1RD_1LD0RB_1LA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|8,468,569,863&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Turing machine variations ==&lt;br /&gt;
&lt;br /&gt;
=== [[Terminating Turmite|Turmite]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k+1 undefined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2,1)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PC0PB_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0PC_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2,1)&lt;br /&gt;
|139&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PD0TC_---0TA_1TA1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3,1)&lt;br /&gt;
|683&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA---_1PC1PB0TC_2PA1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2)&lt;br /&gt;
|758&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_0PD1PB_1PA1TA_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,4)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite instructions ===&lt;br /&gt;
Maximum number of steps done by a Turmite machine with n defined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTi(2)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(3)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(4)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(5)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(7)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(8)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turmite machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_1TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2TB---_1TA0PB0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1PC1TC_1TB0PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB0PC_1PC0TA_1TB1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4,1)&lt;br /&gt;
|44&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PB0PB---_2TB2TA3TA1TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2,1)&lt;br /&gt;
|48&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PC_0TB1TD_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,2)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,1)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---1TC_2PC1TA0PB_2TB2TC2PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3)&lt;br /&gt;
|134&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PC2TB_1TC0TA0PB_2TC1TA2TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2)&lt;br /&gt;
|166&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_0PC0TA_0PD0PB_1TB1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turmite machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTti(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(4)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_1TC1PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(5)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_0PD---_1TC0TD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(6)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(7)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(8)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2,1)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PC0TC_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2,1)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2)&lt;br /&gt;
|267&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TD_1PC0PA_0PA0TD_1PD0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,4)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,3)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(3)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(4)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(6)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(8)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(9)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol turmite machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2,1)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PC_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PC0PA_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2,1)&lt;br /&gt;
|30&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_1PD0PC_0PA---_0PB---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(3)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(4)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(5)&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TA_2PB0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(6)&lt;br /&gt;
|36&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TC_2PB0PA---_0TB------&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(7)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Lambda calculus ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for SKI calculus#SK calculus|SK calculus]] ===&lt;br /&gt;
Maximum normal form size of any closed SK term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;SSSS&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(6)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(7)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(S(SKS))S&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BCKW calculus ===&lt;br /&gt;
Maximum normal form size of any closed BCKW term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;BBB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(4)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(5)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BBB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(6)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(7)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BBB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(WB(BB)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for lambda calculus#De Bruijn|De Bruijn]] ===&lt;br /&gt;
Maximum normal form size of any closed lambda term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBL(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(9)&lt;br /&gt;
|68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(10)&lt;br /&gt;
|&amp;lt;math&amp;gt;7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(12)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(13)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(15)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(18)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^2+2}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(26)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(20)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(f_{\omega+1}(f_{\omega}(8)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\1 3 2 1) 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega+2}}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^\omega}}(26)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 3 2 1) 1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^\omega}}(f_{\omega^{\omega+2}}(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(24)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\zeta_0}(15)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(25)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\psi(\Omega_\omega)}(12)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(26)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\psi(\Omega_\omega)}(f_{\omega^{\omega+2}}(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\psi(\Omega_\omega+1)}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 (\\\\1 4 4 4 3 2 1) 1 1 1 1) 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tag system ==&lt;br /&gt;
&lt;br /&gt;
=== 2-tag system ===&lt;br /&gt;
Maximum number of transformations performed with a 2-tag system of size n. Its size if the sum of the number of letters and the number of different letters.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(4)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(5)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(6)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(7)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(8)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(9)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(11)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(12)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bc, a, aaa&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Cyclic tag ===&lt;br /&gt;
Maximum number of transformations that can be done with a cyclic tag system of size n. Its size if the sum of the number of bits and the number of instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(6)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(7)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(9)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(10)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 0000&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tree rewriting ===&lt;br /&gt;
Maximum number of transformations that can be done with a tree rewriting system of size n. Its size if the number of brackets.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: () P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(4)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(5)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(8)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(14)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()(()) P: (()) &amp;gt; ((())), ()()() &amp;gt; _, () &amp;gt; ()()&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(23)&lt;br /&gt;
|672&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: ()() &amp;gt; (()())(), ()() &amp;gt; ()()(()), () &amp;gt; (()), (((()))) &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(38)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 10 \uparrow 54&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: (())(()()) P: (()()) &amp;gt; (()())(()), (()()) &amp;gt; (()())(()), ()(()) &amp;gt; (())((())), ((())) &amp;gt; ((()))()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(45)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 130&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((())) P: ((())) &amp;gt; ((()))(()()), (()()) &amp;gt; (()())(()), (()) &amp;gt; (())(()()()), (()()()) &amp;gt; (()()())()(), ()()() &amp;gt; _, () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(69)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((()())) P: ((()())) &amp;gt; ((()()))((())), ((())) &amp;gt; ((()))(()()()), ((())) &amp;gt; ((()))(()()()), (()()()) &amp;gt; (()()())(()()), (()()) &amp;gt; (()())(())(()), (()) &amp;gt; (())()()()()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Fractran ==&lt;br /&gt;
&lt;br /&gt;
=== [[Fractran]] ===&lt;br /&gt;
Maximum number of instructions applied by a fractran program of size n before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBf(10)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;[729/2, 1/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(11)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;[27/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(12)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(13)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(14)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;[243/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(15)&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 25/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(16)&lt;br /&gt;
|53&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 125/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(17)&lt;br /&gt;
|107&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 40/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(18)&lt;br /&gt;
|211&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 80/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(19)&lt;br /&gt;
|370&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 160/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(20)&lt;br /&gt;
|746&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 22/3, 6/77, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(21)&lt;br /&gt;
|31,957,632&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 4/3, 27/14, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.146 \times 10^{62}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/12, 9/10, 14/3, 11/2, 5/7, 3/11]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Brainfuck ==&lt;br /&gt;
&lt;br /&gt;
=== Brainfuck ===&lt;br /&gt;
Maximum number of instructions read by a brainfuck program with n instructions (uses &amp;lt;code&amp;gt;+-&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols). Cells size are unbounded and can have negative values.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;++++++&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[-]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(8)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;+++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(9)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(10)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;+++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(11)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;+[[&amp;gt;]-&amp;lt;+&amp;lt;+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Boolfuck ===&lt;br /&gt;
Maximum number of instructions read by a boolfuck program with n instructions (uses &amp;lt;code&amp;gt;*&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(10)&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(11)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(12)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(13)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(14)&lt;br /&gt;
|58&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+[&amp;lt;+&amp;lt;+[&amp;gt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(17)&lt;br /&gt;
|109&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(19)&lt;br /&gt;
|112&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(20)&lt;br /&gt;
|180&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(22)&lt;br /&gt;
|183&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(23)&lt;br /&gt;
|269&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BitChanger ===&lt;br /&gt;
Maximum number of instructions read by a bitchanger program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;}[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(9)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(10)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(11)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(12)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitter ===&lt;br /&gt;
Maximum number of instructions read by a bitter program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(11)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(12)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Minsky machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Register machine|Minsky machines]] ===&lt;br /&gt;
Maximum number of steps done by a Minsky machine before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|MBB(1)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;0+*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(2)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(3)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0+C_0-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(4)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1+C_0-BD_1-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;0-DB_0+C_1-ED_1+A_1-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(6)&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1-FC_1+D_0-CE_0+A_1-A*&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=6047</id>
		<title>User:Azerty/Busy Beaver Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=6047"/>
		<updated>2026-01-15T08:54:31Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* De Bruijn */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of Busy Beaver functions for Turing machines and other simple Turing-complete systems and their current lower bounds.&lt;br /&gt;
&lt;br /&gt;
I only add functions that meet the requirements below:&lt;br /&gt;
&lt;br /&gt;
* The function must grow uncomputably fast, like BB(n).&lt;br /&gt;
* The function must not have similar champions to other function, like Σ(n).&lt;br /&gt;
* The function must not be arbitrary complex.&lt;br /&gt;
&lt;br /&gt;
== Turing machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver Functions|Classic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2)|BB(2,2)]]&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,3,1)&lt;br /&gt;
|14&lt;br /&gt;
|{{TM|0RB---1LB_1LA2RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3)|BB(3,2)]]&lt;br /&gt;
|21&lt;br /&gt;
|{{TM|1RB---_1LB0RC_1LC1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,3)]]&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(4,2,1)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB---_1LB0LC_1RD1LD_0RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,2)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB---0RC_2LC------_2RC0LC1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4)|BB(4,2)]]&lt;br /&gt;
|107&lt;br /&gt;
|{{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,4,1)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(5,2,1)&lt;br /&gt;
|242&lt;br /&gt;
|{{TM|1RB0LA_1RC0LA_1LD0RE_---1LA_---0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,4)]]&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,1)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA_1LC1LA2RB_---1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(5)|BB(5,2)]]&lt;br /&gt;
|47,176,870&lt;br /&gt;
|{{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(6,2,1)&lt;br /&gt;
|17,397,627,083&lt;br /&gt;
|{{TM|1RB0LA_1RC1RD_1LB1RA_---0RE_1LF0RC_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;1.191 \times 10^{17}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,5)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,6)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10^{10^{115}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3RB5RA1LB5LA2LB_2LA2RA4RB---3LB2LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(6)|BB(6,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_1RC---_1LD0RF_1RA0LE_0LD1RC_1RA0RE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10^{28}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(7)|BB(7,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{11} 10 \uparrow^{10} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LC1LF_1RD0LB_1RA1LE_---0LC_1RG1LD_0RG0RF|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,4)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(9,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega(10 \uparrow^{7} 10 \uparrow^{7} 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_1LB0LH|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,5)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(10,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(11,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(12,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(15,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(16,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,7)]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Instruction-Limited Busy Beaver|Instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(5)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(6)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(7)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(9)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(29)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(31)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turing machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB---2RB_2LB2RA0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2,1)&lt;br /&gt;
|11&lt;br /&gt;
|{{TM|1RB---_0RC0RB_1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|0RB0LB_0RC1RC_1LA0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB0RA0RB_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4,1)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB3RA0RB0RA_2LA2RB1LB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4)&lt;br /&gt;
|49&lt;br /&gt;
|{{TM|1RB2RA2RB2LA_2LB0RA3RB0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2,1)&lt;br /&gt;
|55&lt;br /&gt;
|{{TM|0RB---_1RC0LD_1RD1RB_1LB0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2)&lt;br /&gt;
|63&lt;br /&gt;
|{{TM|0RB0LD_0RC1LC_0RD1LA_1LB1RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(5,2,1)&lt;br /&gt;
|70&lt;br /&gt;
|{{TM|0RB---_0RC1LC_1RD0RE_1RE1RD_1LE1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3,2)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3)&lt;br /&gt;
|202&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,3,2)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turing machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBti(3)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(4)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(5)&lt;br /&gt;
|18&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(6)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB------_1RC------_1RD------_2LD2RD0RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(7)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(8)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function|Blanking]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2,1)&lt;br /&gt;
|16&lt;br /&gt;
|{{TM|1RB---_1LC0LC_1RC0LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3,1)&lt;br /&gt;
|22&lt;br /&gt;
|{{TM|1RB2LB---_2LA0RB1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2)&lt;br /&gt;
|34&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2,1)&lt;br /&gt;
|169&lt;br /&gt;
|{{TM|1RB---_0RC0LA_1LC1LD_0RB0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,2)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,1)&lt;br /&gt;
|308&lt;br /&gt;
|{{TM|1RB1RC---_1LB1RA2RB_0RB2LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2)&lt;br /&gt;
|32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5,2)&lt;br /&gt;
|32,810,047&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6,2)&lt;br /&gt;
|65,538,549&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function#Instruction-limited Blanking Busy Beaver (BLBi(n))|Blanking instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2)&lt;br /&gt;
|19&lt;br /&gt;
|{{TM|1RB1RA_0RC---_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2,1)&lt;br /&gt;
|32&lt;br /&gt;
|{{TM|1RB---_1LC---_0LD0LC_1RD0RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2,1)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(5)&lt;br /&gt;
|23&lt;br /&gt;
|{{TM|1RB------_0RC------_1LC2LB0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(6)&lt;br /&gt;
|66&lt;br /&gt;
|{{TM|1RB------_1LB0LC---_1RC2RA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(7)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(8)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(9)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBws(2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(3)&lt;br /&gt;
|20&lt;br /&gt;
|{{TM|1RB---_0LC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(4)&lt;br /&gt;
|53&lt;br /&gt;
|{{TM|1RB1LB_1LC1RD_1RA1LA_---0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(5)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move and write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol and go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(4)&lt;br /&gt;
|29&lt;br /&gt;
|{{TM|1RB1RD_0LC0LA_1LC1LA_0RC---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(5)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Reversible Turing Machine|Reversible]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol reversible Turing machine with k+1 instructions transitions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|0RB---_1LA1RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|0RB---_0LC1RA_1RB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(4,2)&lt;br /&gt;
|48&lt;br /&gt;
|{{TM|1RB0LD_0LC0RB_1LA1LD_1LC---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(5,2)&lt;br /&gt;
|388&lt;br /&gt;
|{{TM|1RB0RD_1RC0RB_1RD---_1LE1LA_0LE0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(6,2)&lt;br /&gt;
|537,556&lt;br /&gt;
|{{TM|1RB1LD_1LC1RE_0LD0LC_0RE0RF_0RA---_1RF1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(7,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{19}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LD_0LC0LD_1LC1LA_0LA1RE_0RF0RE_0RG1RF_0RB---|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Maximum Consecutive Ones Function|Consecutive ones]] ===&lt;br /&gt;
Maximum number of consecutive 1s left on the tape by a n-state, m-symbol Turing machine with k+1 undefined instructions after halting. TMs must leave all their 1s consecutively.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2,1)&lt;br /&gt;
|2&lt;br /&gt;
|{{TM|1RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LC_1RC---_1LA0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,3)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB0LA_1RC1LB_1LB1RD_---0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,3)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB1RA---_1LC1LC2LA_2RA1LB1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(5,2)&lt;br /&gt;
|165&lt;br /&gt;
|{{TM|1RB1LA_1RC1LE_1RD1RE_0LA1RC_---0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler preperiod|Preperiodic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before turning into a translated cycler.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB---_1LB0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0LB_1LA0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(3,2)&lt;br /&gt;
|101&lt;br /&gt;
|{{TM|1RB1LB_0RC0LA_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(4,2)&lt;br /&gt;
|119,120,230,102&lt;br /&gt;
|{{TM|1RB1LC_0LA1RD_0RB0LC_1LA0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;2 \times 10^{23}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA1RA1LB_0LB2RB3RB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|&amp;lt;math&amp;gt;5.418 \times 10^{51}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{14,006}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_0LC0LB_0LD1LC_1RD1RA_0RC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0LB2LA_1LA0RC0LB_2RC2RB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler period|Periodic]] ===&lt;br /&gt;
Maximum translated cycler period done by a n-state, m-symbol Turing Machine with k undefined instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0RB_1LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,2)&lt;br /&gt;
|92&lt;br /&gt;
|{{TM|1RB0LA_0RC1LA_1LC0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|1,195&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,4)&lt;br /&gt;
|33,209,131&lt;br /&gt;
|{{TM|1RB0RA3LB1RB_2LA0LB1RA2RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(4,2)&lt;br /&gt;
|212,081,736&lt;br /&gt;
|{{TM|1RB0LA_0RC1RD_1LD0RB_1LA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|8,468,569,863&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Turing machine variations ==&lt;br /&gt;
&lt;br /&gt;
=== [[Terminating Turmite|Turmite]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k+1 undefined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2,1)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PC0PB_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0PC_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2,1)&lt;br /&gt;
|139&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PD0TC_---0TA_1TA1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3,1)&lt;br /&gt;
|683&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA---_1PC1PB0TC_2PA1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2)&lt;br /&gt;
|758&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_0PD1PB_1PA1TA_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,4)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite instructions ===&lt;br /&gt;
Maximum number of steps done by a Turmite machine with n defined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTi(2)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(3)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(4)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(5)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(7)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(8)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turmite machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_1TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2TB---_1TA0PB0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1PC1TC_1TB0PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB0PC_1PC0TA_1TB1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4,1)&lt;br /&gt;
|44&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PB0PB---_2TB2TA3TA1TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2,1)&lt;br /&gt;
|48&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PC_0TB1TD_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,2)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,1)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---1TC_2PC1TA0PB_2TB2TC2PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3)&lt;br /&gt;
|134&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PC2TB_1TC0TA0PB_2TC1TA2TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2)&lt;br /&gt;
|166&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_0PC0TA_0PD0PB_1TB1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turmite machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTti(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(4)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_1TC1PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(5)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_0PD---_1TC0TD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(6)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(7)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(8)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2,1)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PC0TC_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2,1)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2)&lt;br /&gt;
|267&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TD_1PC0PA_0PA0TD_1PD0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,4)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,3)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(3)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(4)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(6)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(8)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(9)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol turmite machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2,1)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PC_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PC0PA_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2,1)&lt;br /&gt;
|30&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_1PD0PC_0PA---_0PB---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(3)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(4)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(5)&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TA_2PB0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(6)&lt;br /&gt;
|36&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TC_2PB0PA---_0TB------&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(7)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Lambda calculus ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for SKI calculus#SK calculus|SK calculus]] ===&lt;br /&gt;
Maximum normal form size of any closed SK term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;SSSS&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(6)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(7)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(S(SKS))S&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BCKW calculus ===&lt;br /&gt;
Maximum normal form size of any closed BCKW term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;BBB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(4)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(5)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BBB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(6)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(7)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BBB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(WB(BB)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for lambda calculus#De Bruijn|De Bruijn]] ===&lt;br /&gt;
Maximum normal form size of any closed lambda term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBL(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(9)&lt;br /&gt;
|68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(10)&lt;br /&gt;
|&amp;lt;math&amp;gt;7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(12)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(13)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(15)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(18)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^2+2}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(26)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(20)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(f_{\omega+1}(f_{\omega}(8)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\1 3 2 1) 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega+2}}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^\omega}}(26)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 3 2 1) 1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^\omega}}(f_{\omega^{\omega+2}}(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(24)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^{\omega+2}}}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\\1 5 4 3 2 1) 1 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(25)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^{\omega^\omega}}}(26)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\\1 5 4 3 2 1) 1 1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(26)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\epsilon_0 \times \omega^{\omega^3}}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 1) (\\1 2 1) (\1 (\2 1 2))) (\\\2 3 (\3 1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(28)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\epsilon_{\omega^{\omega^3}}}(3)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\1 2 (\\1 2 1) 1) (\1 (\2 1 2))) (\\\2 3 (\3 1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tag system ==&lt;br /&gt;
&lt;br /&gt;
=== 2-tag system ===&lt;br /&gt;
Maximum number of transformations performed with a 2-tag system of size n. Its size if the sum of the number of letters and the number of different letters.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(4)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(5)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(6)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(7)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(8)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(9)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(11)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(12)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bc, a, aaa&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Cyclic tag ===&lt;br /&gt;
Maximum number of transformations that can be done with a cyclic tag system of size n. Its size if the sum of the number of bits and the number of instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(6)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(7)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(9)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(10)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 0000&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tree rewriting ===&lt;br /&gt;
Maximum number of transformations that can be done with a tree rewriting system of size n. Its size if the number of brackets.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: () P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(4)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(5)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(8)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(14)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()(()) P: (()) &amp;gt; ((())), ()()() &amp;gt; _, () &amp;gt; ()()&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(23)&lt;br /&gt;
|672&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: ()() &amp;gt; (()())(), ()() &amp;gt; ()()(()), () &amp;gt; (()), (((()))) &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(38)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 10 \uparrow 54&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: (())(()()) P: (()()) &amp;gt; (()())(()), (()()) &amp;gt; (()())(()), ()(()) &amp;gt; (())((())), ((())) &amp;gt; ((()))()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(45)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 130&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((())) P: ((())) &amp;gt; ((()))(()()), (()()) &amp;gt; (()())(()), (()) &amp;gt; (())(()()()), (()()()) &amp;gt; (()()())()(), ()()() &amp;gt; _, () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(69)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((()())) P: ((()())) &amp;gt; ((()()))((())), ((())) &amp;gt; ((()))(()()()), ((())) &amp;gt; ((()))(()()()), (()()()) &amp;gt; (()()())(()()), (()()) &amp;gt; (()())(())(()), (()) &amp;gt; (())()()()()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Fractran ==&lt;br /&gt;
&lt;br /&gt;
=== [[Fractran]] ===&lt;br /&gt;
Maximum number of instructions applied by a fractran program of size n before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBf(10)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;[729/2, 1/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(11)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;[27/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(12)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(13)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(14)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;[243/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(15)&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 25/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(16)&lt;br /&gt;
|53&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 125/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(17)&lt;br /&gt;
|107&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 40/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(18)&lt;br /&gt;
|211&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 80/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(19)&lt;br /&gt;
|370&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 160/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(20)&lt;br /&gt;
|746&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 22/3, 6/77, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(21)&lt;br /&gt;
|31,957,632&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 4/3, 27/14, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.146 \times 10^{62}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/12, 9/10, 14/3, 11/2, 5/7, 3/11]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Brainfuck ==&lt;br /&gt;
&lt;br /&gt;
=== Brainfuck ===&lt;br /&gt;
Maximum number of instructions read by a brainfuck program with n instructions (uses &amp;lt;code&amp;gt;+-&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols). Cells size are unbounded and can have negative values.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;++++++&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[-]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(8)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;+++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(9)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(10)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;+++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(11)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;+[[&amp;gt;]-&amp;lt;+&amp;lt;+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Boolfuck ===&lt;br /&gt;
Maximum number of instructions read by a boolfuck program with n instructions (uses &amp;lt;code&amp;gt;*&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(10)&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(11)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(12)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(13)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(14)&lt;br /&gt;
|58&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+[&amp;lt;+&amp;lt;+[&amp;gt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(17)&lt;br /&gt;
|109&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(19)&lt;br /&gt;
|112&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(20)&lt;br /&gt;
|180&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(22)&lt;br /&gt;
|183&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(23)&lt;br /&gt;
|269&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BitChanger ===&lt;br /&gt;
Maximum number of instructions read by a bitchanger program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;}[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(9)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(10)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(11)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(12)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitter ===&lt;br /&gt;
Maximum number of instructions read by a bitter program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(11)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(12)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Minsky machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Register machine|Minsky machines]] ===&lt;br /&gt;
Maximum number of steps done by a Minsky machine before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|MBB(1)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;0+*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(2)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(3)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0+C_0-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(4)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1+C_0-BD_1-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;0-DB_0+C_1-ED_1+A_1-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(6)&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1-FC_1+D_0-CE_0+A_1-A*&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=6046</id>
		<title>User:Azerty/Busy Beaver Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=6046"/>
		<updated>2026-01-15T08:53:49Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* De Bruijn */ Added new champion.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of Busy Beaver functions for Turing machines and other simple Turing-complete systems and their current lower bounds.&lt;br /&gt;
&lt;br /&gt;
I only add functions that meet the requirements below:&lt;br /&gt;
&lt;br /&gt;
* The function must grow uncomputably fast, like BB(n).&lt;br /&gt;
* The function must not have similar champions to other function, like Σ(n).&lt;br /&gt;
* The function must not be arbitrary complex.&lt;br /&gt;
&lt;br /&gt;
== Turing machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver Functions|Classic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2)|BB(2,2)]]&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,3,1)&lt;br /&gt;
|14&lt;br /&gt;
|{{TM|0RB---1LB_1LA2RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3)|BB(3,2)]]&lt;br /&gt;
|21&lt;br /&gt;
|{{TM|1RB---_1LB0RC_1LC1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,3)]]&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(4,2,1)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB---_1LB0LC_1RD1LD_0RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,2)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB---0RC_2LC------_2RC0LC1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4)|BB(4,2)]]&lt;br /&gt;
|107&lt;br /&gt;
|{{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,4,1)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(5,2,1)&lt;br /&gt;
|242&lt;br /&gt;
|{{TM|1RB0LA_1RC0LA_1LD0RE_---1LA_---0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,4)]]&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,1)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA_1LC1LA2RB_---1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(5)|BB(5,2)]]&lt;br /&gt;
|47,176,870&lt;br /&gt;
|{{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(6,2,1)&lt;br /&gt;
|17,397,627,083&lt;br /&gt;
|{{TM|1RB0LA_1RC1RD_1LB1RA_---0RE_1LF0RC_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;1.191 \times 10^{17}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,5)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,6)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10^{10^{115}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3RB5RA1LB5LA2LB_2LA2RA4RB---3LB2LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(6)|BB(6,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_1RC---_1LD0RF_1RA0LE_0LD1RC_1RA0RE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10^{28}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(7)|BB(7,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{11} 10 \uparrow^{10} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LC1LF_1RD0LB_1RA1LE_---0LC_1RG1LD_0RG0RF|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,4)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(9,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega(10 \uparrow^{7} 10 \uparrow^{7} 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_1LB0LH|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,5)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(10,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(11,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(12,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(15,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(16,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,7)]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Instruction-Limited Busy Beaver|Instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(5)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(6)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(7)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(9)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(29)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(31)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turing machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB---2RB_2LB2RA0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2,1)&lt;br /&gt;
|11&lt;br /&gt;
|{{TM|1RB---_0RC0RB_1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|0RB0LB_0RC1RC_1LA0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB0RA0RB_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4,1)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB3RA0RB0RA_2LA2RB1LB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4)&lt;br /&gt;
|49&lt;br /&gt;
|{{TM|1RB2RA2RB2LA_2LB0RA3RB0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2,1)&lt;br /&gt;
|55&lt;br /&gt;
|{{TM|0RB---_1RC0LD_1RD1RB_1LB0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2)&lt;br /&gt;
|63&lt;br /&gt;
|{{TM|0RB0LD_0RC1LC_0RD1LA_1LB1RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(5,2,1)&lt;br /&gt;
|70&lt;br /&gt;
|{{TM|0RB---_0RC1LC_1RD0RE_1RE1RD_1LE1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3,2)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3)&lt;br /&gt;
|202&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,3,2)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turing machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBti(3)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(4)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(5)&lt;br /&gt;
|18&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(6)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB------_1RC------_1RD------_2LD2RD0RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(7)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(8)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function|Blanking]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2,1)&lt;br /&gt;
|16&lt;br /&gt;
|{{TM|1RB---_1LC0LC_1RC0LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3,1)&lt;br /&gt;
|22&lt;br /&gt;
|{{TM|1RB2LB---_2LA0RB1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2)&lt;br /&gt;
|34&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2,1)&lt;br /&gt;
|169&lt;br /&gt;
|{{TM|1RB---_0RC0LA_1LC1LD_0RB0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,2)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,1)&lt;br /&gt;
|308&lt;br /&gt;
|{{TM|1RB1RC---_1LB1RA2RB_0RB2LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2)&lt;br /&gt;
|32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5,2)&lt;br /&gt;
|32,810,047&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6,2)&lt;br /&gt;
|65,538,549&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function#Instruction-limited Blanking Busy Beaver (BLBi(n))|Blanking instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2)&lt;br /&gt;
|19&lt;br /&gt;
|{{TM|1RB1RA_0RC---_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2,1)&lt;br /&gt;
|32&lt;br /&gt;
|{{TM|1RB---_1LC---_0LD0LC_1RD0RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2,1)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(5)&lt;br /&gt;
|23&lt;br /&gt;
|{{TM|1RB------_0RC------_1LC2LB0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(6)&lt;br /&gt;
|66&lt;br /&gt;
|{{TM|1RB------_1LB0LC---_1RC2RA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(7)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(8)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(9)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBws(2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(3)&lt;br /&gt;
|20&lt;br /&gt;
|{{TM|1RB---_0LC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(4)&lt;br /&gt;
|53&lt;br /&gt;
|{{TM|1RB1LB_1LC1RD_1RA1LA_---0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(5)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move and write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol and go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(4)&lt;br /&gt;
|29&lt;br /&gt;
|{{TM|1RB1RD_0LC0LA_1LC1LA_0RC---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(5)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Reversible Turing Machine|Reversible]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol reversible Turing machine with k+1 instructions transitions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|0RB---_1LA1RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|0RB---_0LC1RA_1RB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(4,2)&lt;br /&gt;
|48&lt;br /&gt;
|{{TM|1RB0LD_0LC0RB_1LA1LD_1LC---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(5,2)&lt;br /&gt;
|388&lt;br /&gt;
|{{TM|1RB0RD_1RC0RB_1RD---_1LE1LA_0LE0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(6,2)&lt;br /&gt;
|537,556&lt;br /&gt;
|{{TM|1RB1LD_1LC1RE_0LD0LC_0RE0RF_0RA---_1RF1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(7,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{19}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LD_0LC0LD_1LC1LA_0LA1RE_0RF0RE_0RG1RF_0RB---|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Maximum Consecutive Ones Function|Consecutive ones]] ===&lt;br /&gt;
Maximum number of consecutive 1s left on the tape by a n-state, m-symbol Turing machine with k+1 undefined instructions after halting. TMs must leave all their 1s consecutively.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2,1)&lt;br /&gt;
|2&lt;br /&gt;
|{{TM|1RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LC_1RC---_1LA0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,3)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB0LA_1RC1LB_1LB1RD_---0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,3)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB1RA---_1LC1LC2LA_2RA1LB1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(5,2)&lt;br /&gt;
|165&lt;br /&gt;
|{{TM|1RB1LA_1RC1LE_1RD1RE_0LA1RC_---0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler preperiod|Preperiodic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before turning into a translated cycler.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB---_1LB0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0LB_1LA0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(3,2)&lt;br /&gt;
|101&lt;br /&gt;
|{{TM|1RB1LB_0RC0LA_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(4,2)&lt;br /&gt;
|119,120,230,102&lt;br /&gt;
|{{TM|1RB1LC_0LA1RD_0RB0LC_1LA0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;2 \times 10^{23}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA1RA1LB_0LB2RB3RB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|&amp;lt;math&amp;gt;5.418 \times 10^{51}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{14,006}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_0LC0LB_0LD1LC_1RD1RA_0RC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0LB2LA_1LA0RC0LB_2RC2RB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler period|Periodic]] ===&lt;br /&gt;
Maximum translated cycler period done by a n-state, m-symbol Turing Machine with k undefined instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0RB_1LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,2)&lt;br /&gt;
|92&lt;br /&gt;
|{{TM|1RB0LA_0RC1LA_1LC0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|1,195&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,4)&lt;br /&gt;
|33,209,131&lt;br /&gt;
|{{TM|1RB0RA3LB1RB_2LA0LB1RA2RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(4,2)&lt;br /&gt;
|212,081,736&lt;br /&gt;
|{{TM|1RB0LA_0RC1RD_1LD0RB_1LA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|8,468,569,863&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Turing machine variations ==&lt;br /&gt;
&lt;br /&gt;
=== [[Terminating Turmite|Turmite]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k+1 undefined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2,1)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PC0PB_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0PC_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2,1)&lt;br /&gt;
|139&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PD0TC_---0TA_1TA1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3,1)&lt;br /&gt;
|683&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA---_1PC1PB0TC_2PA1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2)&lt;br /&gt;
|758&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_0PD1PB_1PA1TA_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,4)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite instructions ===&lt;br /&gt;
Maximum number of steps done by a Turmite machine with n defined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTi(2)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(3)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(4)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(5)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(7)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(8)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turmite machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_1TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2TB---_1TA0PB0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1PC1TC_1TB0PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB0PC_1PC0TA_1TB1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4,1)&lt;br /&gt;
|44&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PB0PB---_2TB2TA3TA1TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2,1)&lt;br /&gt;
|48&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PC_0TB1TD_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,2)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,1)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---1TC_2PC1TA0PB_2TB2TC2PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3)&lt;br /&gt;
|134&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PC2TB_1TC0TA0PB_2TC1TA2TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2)&lt;br /&gt;
|166&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_0PC0TA_0PD0PB_1TB1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turmite machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTti(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(4)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_1TC1PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(5)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_0PD---_1TC0TD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(6)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(7)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(8)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2,1)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PC0TC_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2,1)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2)&lt;br /&gt;
|267&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TD_1PC0PA_0PA0TD_1PD0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,4)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,3)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(3)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(4)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(6)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(8)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(9)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol turmite machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2,1)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PC_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PC0PA_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2,1)&lt;br /&gt;
|30&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_1PD0PC_0PA---_0PB---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(3)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(4)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(5)&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TA_2PB0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(6)&lt;br /&gt;
|36&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TC_2PB0PA---_0TB------&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(7)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Lambda calculus ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for SKI calculus#SK calculus|SK calculus]] ===&lt;br /&gt;
Maximum normal form size of any closed SK term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;SSSS&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(6)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(7)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(S(SKS))S&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BCKW calculus ===&lt;br /&gt;
Maximum normal form size of any closed BCKW term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;BBB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(4)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(5)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BBB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(6)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(7)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BBB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(WB(BB)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for lambda calculus#De Bruijn|De Bruijn]] ===&lt;br /&gt;
Maximum normal form size of any closed lambda term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBL(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(9)&lt;br /&gt;
|68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(10)&lt;br /&gt;
|&amp;lt;math&amp;gt;7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(12)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(13)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(15)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(18)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^2+2}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(26)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(20)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(f_{\omega+1}(f_{\omega}(8)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\1 3 2 1) 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega+2}}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^\omega}}(26)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 3 2 1) 1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^\omega}}(f_{\omega^{\omega+2}}(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(24)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^{\omega+2}}}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\\1 5 4 3 2 1) 1 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(25)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^{\omega^\omega}}}(26)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\\1 5 4 3 2 1) 1 1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(26)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\epsilon_0 \times \omega^{\omega^3}}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 1) (\\1 2 1) (\1 (\2 1 2))) (\\\2 3 (\3 1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\epsilon_{\omega^{\omega^3}}}(3)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\1 2 (\\1 2 1) 1) (\1 (\2 1 2))) (\\2 3 (\3 1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tag system ==&lt;br /&gt;
&lt;br /&gt;
=== 2-tag system ===&lt;br /&gt;
Maximum number of transformations performed with a 2-tag system of size n. Its size if the sum of the number of letters and the number of different letters.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(4)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(5)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(6)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(7)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(8)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(9)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(11)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(12)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bc, a, aaa&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Cyclic tag ===&lt;br /&gt;
Maximum number of transformations that can be done with a cyclic tag system of size n. Its size if the sum of the number of bits and the number of instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(6)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(7)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(9)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(10)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 0000&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tree rewriting ===&lt;br /&gt;
Maximum number of transformations that can be done with a tree rewriting system of size n. Its size if the number of brackets.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: () P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(4)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(5)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(8)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(14)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()(()) P: (()) &amp;gt; ((())), ()()() &amp;gt; _, () &amp;gt; ()()&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(23)&lt;br /&gt;
|672&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: ()() &amp;gt; (()())(), ()() &amp;gt; ()()(()), () &amp;gt; (()), (((()))) &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(38)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 10 \uparrow 54&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: (())(()()) P: (()()) &amp;gt; (()())(()), (()()) &amp;gt; (()())(()), ()(()) &amp;gt; (())((())), ((())) &amp;gt; ((()))()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(45)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 130&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((())) P: ((())) &amp;gt; ((()))(()()), (()()) &amp;gt; (()())(()), (()) &amp;gt; (())(()()()), (()()()) &amp;gt; (()()())()(), ()()() &amp;gt; _, () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(69)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((()())) P: ((()())) &amp;gt; ((()()))((())), ((())) &amp;gt; ((()))(()()()), ((())) &amp;gt; ((()))(()()()), (()()()) &amp;gt; (()()())(()()), (()()) &amp;gt; (()())(())(()), (()) &amp;gt; (())()()()()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Fractran ==&lt;br /&gt;
&lt;br /&gt;
=== [[Fractran]] ===&lt;br /&gt;
Maximum number of instructions applied by a fractran program of size n before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBf(10)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;[729/2, 1/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(11)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;[27/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(12)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(13)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(14)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;[243/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(15)&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 25/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(16)&lt;br /&gt;
|53&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 125/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(17)&lt;br /&gt;
|107&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 40/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(18)&lt;br /&gt;
|211&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 80/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(19)&lt;br /&gt;
|370&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 160/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(20)&lt;br /&gt;
|746&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 22/3, 6/77, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(21)&lt;br /&gt;
|31,957,632&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 4/3, 27/14, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.146 \times 10^{62}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/12, 9/10, 14/3, 11/2, 5/7, 3/11]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Brainfuck ==&lt;br /&gt;
&lt;br /&gt;
=== Brainfuck ===&lt;br /&gt;
Maximum number of instructions read by a brainfuck program with n instructions (uses &amp;lt;code&amp;gt;+-&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols). Cells size are unbounded and can have negative values.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;++++++&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[-]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(8)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;+++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(9)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(10)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;+++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(11)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;+[[&amp;gt;]-&amp;lt;+&amp;lt;+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Boolfuck ===&lt;br /&gt;
Maximum number of instructions read by a boolfuck program with n instructions (uses &amp;lt;code&amp;gt;*&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(10)&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(11)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(12)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(13)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(14)&lt;br /&gt;
|58&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+[&amp;lt;+&amp;lt;+[&amp;gt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(17)&lt;br /&gt;
|109&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(19)&lt;br /&gt;
|112&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(20)&lt;br /&gt;
|180&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(22)&lt;br /&gt;
|183&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(23)&lt;br /&gt;
|269&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BitChanger ===&lt;br /&gt;
Maximum number of instructions read by a bitchanger program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;}[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(9)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(10)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(11)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(12)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitter ===&lt;br /&gt;
Maximum number of instructions read by a bitter program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(11)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(12)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Minsky machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Register machine|Minsky machines]] ===&lt;br /&gt;
Maximum number of steps done by a Minsky machine before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|MBB(1)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;0+*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(2)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(3)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0+C_0-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(4)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1+C_0-BD_1-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;0-DB_0+C_1-ED_1+A_1-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(6)&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1-FC_1+D_0-CE_0+A_1-A*&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=6035</id>
		<title>User:Azerty/Busy Beaver Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=6035"/>
		<updated>2026-01-11T14:19:41Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* De Bruijn */ Added more lower bounds.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of Busy Beaver functions for Turing machines and other simple Turing-complete systems and their current lower bounds.&lt;br /&gt;
&lt;br /&gt;
I only add functions that meet the requirements below:&lt;br /&gt;
&lt;br /&gt;
* The function must grow uncomputably fast, like BB(n).&lt;br /&gt;
* The function must not have similar champions to other function, like Σ(n).&lt;br /&gt;
* The function must not be arbitrary complex.&lt;br /&gt;
&lt;br /&gt;
== Turing machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver Functions|Classic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2)|BB(2,2)]]&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,3,1)&lt;br /&gt;
|14&lt;br /&gt;
|{{TM|0RB---1LB_1LA2RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3)|BB(3,2)]]&lt;br /&gt;
|21&lt;br /&gt;
|{{TM|1RB---_1LB0RC_1LC1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,3)]]&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(4,2,1)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB---_1LB0LC_1RD1LD_0RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,2)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB---0RC_2LC------_2RC0LC1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4)|BB(4,2)]]&lt;br /&gt;
|107&lt;br /&gt;
|{{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,4,1)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(5,2,1)&lt;br /&gt;
|242&lt;br /&gt;
|{{TM|1RB0LA_1RC0LA_1LD0RE_---1LA_---0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,4)]]&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,1)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA_1LC1LA2RB_---1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(5)|BB(5,2)]]&lt;br /&gt;
|47,176,870&lt;br /&gt;
|{{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(6,2,1)&lt;br /&gt;
|17,397,627,083&lt;br /&gt;
|{{TM|1RB0LA_1RC1RD_1LB1RA_---0RE_1LF0RC_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;1.191 \times 10^{17}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,5)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,6)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10^{10^{115}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3RB5RA1LB5LA2LB_2LA2RA4RB---3LB2LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(6)|BB(6,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_1RC---_1LD0RF_1RA0LE_0LD1RC_1RA0RE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10^{28}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(7)|BB(7,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{11} 10 \uparrow^{10} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LC1LF_1RD0LB_1RA1LE_---0LC_1RG1LD_0RG0RF|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,4)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(9,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega(10 \uparrow^{7} 10 \uparrow^{7} 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_1LB0LH|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,5)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(10,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(11,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(12,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(15,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(16,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,7)]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Instruction-Limited Busy Beaver|Instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(5)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(6)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(7)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(9)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(29)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(31)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turing machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB---2RB_2LB2RA0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2,1)&lt;br /&gt;
|11&lt;br /&gt;
|{{TM|1RB---_0RC0RB_1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|0RB0LB_0RC1RC_1LA0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB0RA0RB_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4,1)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB3RA0RB0RA_2LA2RB1LB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4)&lt;br /&gt;
|49&lt;br /&gt;
|{{TM|1RB2RA2RB2LA_2LB0RA3RB0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2,1)&lt;br /&gt;
|55&lt;br /&gt;
|{{TM|0RB---_1RC0LD_1RD1RB_1LB0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2)&lt;br /&gt;
|63&lt;br /&gt;
|{{TM|0RB0LD_0RC1LC_0RD1LA_1LB1RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(5,2,1)&lt;br /&gt;
|70&lt;br /&gt;
|{{TM|0RB---_0RC1LC_1RD0RE_1RE1RD_1LE1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3,2)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3)&lt;br /&gt;
|202&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,3,2)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turing machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBti(3)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(4)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(5)&lt;br /&gt;
|18&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(6)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB------_1RC------_1RD------_2LD2RD0RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(7)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(8)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function|Blanking]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2,1)&lt;br /&gt;
|16&lt;br /&gt;
|{{TM|1RB---_1LC0LC_1RC0LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3,1)&lt;br /&gt;
|22&lt;br /&gt;
|{{TM|1RB2LB---_2LA0RB1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2)&lt;br /&gt;
|34&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2,1)&lt;br /&gt;
|169&lt;br /&gt;
|{{TM|1RB---_0RC0LA_1LC1LD_0RB0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,2)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,1)&lt;br /&gt;
|308&lt;br /&gt;
|{{TM|1RB1RC---_1LB1RA2RB_0RB2LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2)&lt;br /&gt;
|32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5,2)&lt;br /&gt;
|32,810,047&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6,2)&lt;br /&gt;
|65,538,549&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function#Instruction-limited Blanking Busy Beaver (BLBi(n))|Blanking instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2)&lt;br /&gt;
|19&lt;br /&gt;
|{{TM|1RB1RA_0RC---_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2,1)&lt;br /&gt;
|32&lt;br /&gt;
|{{TM|1RB---_1LC---_0LD0LC_1RD0RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2,1)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(5)&lt;br /&gt;
|23&lt;br /&gt;
|{{TM|1RB------_0RC------_1LC2LB0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(6)&lt;br /&gt;
|66&lt;br /&gt;
|{{TM|1RB------_1LB0LC---_1RC2RA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(7)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(8)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(9)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBws(2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(3)&lt;br /&gt;
|20&lt;br /&gt;
|{{TM|1RB---_0LC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(4)&lt;br /&gt;
|53&lt;br /&gt;
|{{TM|1RB1LB_1LC1RD_1RA1LA_---0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(5)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move and write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol and go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(4)&lt;br /&gt;
|29&lt;br /&gt;
|{{TM|1RB1RD_0LC0LA_1LC1LA_0RC---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(5)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Reversible Turing Machine|Reversible]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol reversible Turing machine with k+1 instructions transitions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|0RB---_1LA1RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|0RB---_0LC1RA_1RB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(4,2)&lt;br /&gt;
|48&lt;br /&gt;
|{{TM|1RB0LD_0LC0RB_1LA1LD_1LC---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(5,2)&lt;br /&gt;
|388&lt;br /&gt;
|{{TM|1RB0RD_1RC0RB_1RD---_1LE1LA_0LE0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(6,2)&lt;br /&gt;
|537,556&lt;br /&gt;
|{{TM|1RB1LD_1LC1RE_0LD0LC_0RE0RF_0RA---_1RF1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(7,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{19}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LD_0LC0LD_1LC1LA_0LA1RE_0RF0RE_0RG1RF_0RB---|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Maximum Consecutive Ones Function|Consecutive ones]] ===&lt;br /&gt;
Maximum number of consecutive 1s left on the tape by a n-state, m-symbol Turing machine with k+1 undefined instructions after halting. TMs must leave all their 1s consecutively.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2,1)&lt;br /&gt;
|2&lt;br /&gt;
|{{TM|1RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LC_1RC---_1LA0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,3)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB0LA_1RC1LB_1LB1RD_---0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,3)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB1RA---_1LC1LC2LA_2RA1LB1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(5,2)&lt;br /&gt;
|165&lt;br /&gt;
|{{TM|1RB1LA_1RC1LE_1RD1RE_0LA1RC_---0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler preperiod|Preperiodic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before turning into a translated cycler.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB---_1LB0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0LB_1LA0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(3,2)&lt;br /&gt;
|101&lt;br /&gt;
|{{TM|1RB1LB_0RC0LA_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(4,2)&lt;br /&gt;
|119,120,230,102&lt;br /&gt;
|{{TM|1RB1LC_0LA1RD_0RB0LC_1LA0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;2 \times 10^{23}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA1RA1LB_0LB2RB3RB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|&amp;lt;math&amp;gt;5.418 \times 10^{51}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{14,006}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_0LC0LB_0LD1LC_1RD1RA_0RC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0LB2LA_1LA0RC0LB_2RC2RB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler period|Periodic]] ===&lt;br /&gt;
Maximum translated cycler period done by a n-state, m-symbol Turing Machine with k undefined instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0RB_1LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,2)&lt;br /&gt;
|92&lt;br /&gt;
|{{TM|1RB0LA_0RC1LA_1LC0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|1,195&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,4)&lt;br /&gt;
|33,209,131&lt;br /&gt;
|{{TM|1RB0RA3LB1RB_2LA0LB1RA2RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(4,2)&lt;br /&gt;
|212,081,736&lt;br /&gt;
|{{TM|1RB0LA_0RC1RD_1LD0RB_1LA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|8,468,569,863&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Turing machine variations ==&lt;br /&gt;
&lt;br /&gt;
=== [[Terminating Turmite|Turmite]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k+1 undefined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2,1)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PC0PB_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0PC_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2,1)&lt;br /&gt;
|139&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PD0TC_---0TA_1TA1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3,1)&lt;br /&gt;
|683&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA---_1PC1PB0TC_2PA1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2)&lt;br /&gt;
|758&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_0PD1PB_1PA1TA_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,4)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite instructions ===&lt;br /&gt;
Maximum number of steps done by a Turmite machine with n defined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTi(2)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(3)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(4)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(5)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(7)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(8)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turmite machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_1TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2TB---_1TA0PB0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1PC1TC_1TB0PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB0PC_1PC0TA_1TB1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4,1)&lt;br /&gt;
|44&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PB0PB---_2TB2TA3TA1TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2,1)&lt;br /&gt;
|48&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PC_0TB1TD_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,2)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,1)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---1TC_2PC1TA0PB_2TB2TC2PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3)&lt;br /&gt;
|134&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PC2TB_1TC0TA0PB_2TC1TA2TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2)&lt;br /&gt;
|166&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_0PC0TA_0PD0PB_1TB1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turmite machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTti(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(4)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_1TC1PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(5)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_0PD---_1TC0TD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(6)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(7)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(8)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2,1)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PC0TC_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2,1)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2)&lt;br /&gt;
|267&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TD_1PC0PA_0PA0TD_1PD0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,4)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,3)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(3)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(4)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(6)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(8)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(9)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol turmite machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2,1)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PC_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PC0PA_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2,1)&lt;br /&gt;
|30&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_1PD0PC_0PA---_0PB---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(3)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(4)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(5)&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TA_2PB0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(6)&lt;br /&gt;
|36&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TC_2PB0PA---_0TB------&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(7)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Lambda calculus ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for SKI calculus#SK calculus|SK calculus]] ===&lt;br /&gt;
Maximum normal form size of any closed SK term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;SSSS&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(6)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(7)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(S(SKS))S&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BCKW calculus ===&lt;br /&gt;
Maximum normal form size of any closed BCKW term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;BBB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(4)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(5)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BBB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(6)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(7)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BBB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(WB(BB)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for lambda calculus#De Bruijn|De Bruijn]] ===&lt;br /&gt;
Maximum normal form size of any closed lambda term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBL(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(9)&lt;br /&gt;
|68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(10)&lt;br /&gt;
|&amp;lt;math&amp;gt;7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(12)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(13)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(15)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(18)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^2+2}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(26)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(20)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(f_{\omega+1}(f_{\omega}(8)))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\1 3 2 1) 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega+2}}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 3 2 1) 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^\omega}}(26)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 3 2 1) 1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^\omega}}(f_{\omega^{\omega+2}}(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 (\1 (\\\\1 4 3 2 1) 1 1 1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(24)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^{\omega+2}}}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\\1 5 4 3 2 1) 1 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(25)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^{\omega^\omega}}}(26)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\\1 5 4 3 2 1) 1 1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(26)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\epsilon_0 \times \omega^{\omega^3}}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 1) (\\1 2 1) (\1 (\2 1 2))) (\\\2 3 (\3 1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tag system ==&lt;br /&gt;
&lt;br /&gt;
=== 2-tag system ===&lt;br /&gt;
Maximum number of transformations performed with a 2-tag system of size n. Its size if the sum of the number of letters and the number of different letters.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(4)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(5)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(6)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(7)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(8)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(9)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(11)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(12)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bc, a, aaa&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Cyclic tag ===&lt;br /&gt;
Maximum number of transformations that can be done with a cyclic tag system of size n. Its size if the sum of the number of bits and the number of instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(6)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(7)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(9)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(10)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 0000&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tree rewriting ===&lt;br /&gt;
Maximum number of transformations that can be done with a tree rewriting system of size n. Its size if the number of brackets.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: () P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(4)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(5)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(8)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(14)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()(()) P: (()) &amp;gt; ((())), ()()() &amp;gt; _, () &amp;gt; ()()&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(23)&lt;br /&gt;
|672&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: ()() &amp;gt; (()())(), ()() &amp;gt; ()()(()), () &amp;gt; (()), (((()))) &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(38)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 10 \uparrow 54&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: (())(()()) P: (()()) &amp;gt; (()())(()), (()()) &amp;gt; (()())(()), ()(()) &amp;gt; (())((())), ((())) &amp;gt; ((()))()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(45)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 130&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((())) P: ((())) &amp;gt; ((()))(()()), (()()) &amp;gt; (()())(()), (()) &amp;gt; (())(()()()), (()()()) &amp;gt; (()()())()(), ()()() &amp;gt; _, () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(69)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((()())) P: ((()())) &amp;gt; ((()()))((())), ((())) &amp;gt; ((()))(()()()), ((())) &amp;gt; ((()))(()()()), (()()()) &amp;gt; (()()())(()()), (()()) &amp;gt; (()())(())(()), (()) &amp;gt; (())()()()()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Fractran ==&lt;br /&gt;
&lt;br /&gt;
=== [[Fractran]] ===&lt;br /&gt;
Maximum number of instructions applied by a fractran program of size n before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBf(10)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;[729/2, 1/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(11)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;[27/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(12)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(13)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(14)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;[243/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(15)&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 25/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(16)&lt;br /&gt;
|53&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 125/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(17)&lt;br /&gt;
|107&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 40/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(18)&lt;br /&gt;
|211&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 80/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(19)&lt;br /&gt;
|370&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 160/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(20)&lt;br /&gt;
|746&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 22/3, 6/77, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(21)&lt;br /&gt;
|31,957,632&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 4/3, 27/14, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.146 \times 10^{62}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/12, 9/10, 14/3, 11/2, 5/7, 3/11]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Brainfuck ==&lt;br /&gt;
&lt;br /&gt;
=== Brainfuck ===&lt;br /&gt;
Maximum number of instructions read by a brainfuck program with n instructions (uses &amp;lt;code&amp;gt;+-&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols). Cells size are unbounded and can have negative values.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;++++++&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[-]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(8)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;+++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(9)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(10)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;+++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(11)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;+[[&amp;gt;]-&amp;lt;+&amp;lt;+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Boolfuck ===&lt;br /&gt;
Maximum number of instructions read by a boolfuck program with n instructions (uses &amp;lt;code&amp;gt;*&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(10)&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(11)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(12)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(13)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(14)&lt;br /&gt;
|58&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+[&amp;lt;+&amp;lt;+[&amp;gt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(17)&lt;br /&gt;
|109&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(19)&lt;br /&gt;
|112&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(20)&lt;br /&gt;
|180&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(22)&lt;br /&gt;
|183&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(23)&lt;br /&gt;
|269&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BitChanger ===&lt;br /&gt;
Maximum number of instructions read by a bitchanger program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;}[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(9)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(10)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(11)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(12)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitter ===&lt;br /&gt;
Maximum number of instructions read by a bitter program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(11)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(12)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Minsky machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Register machine|Minsky machines]] ===&lt;br /&gt;
Maximum number of steps done by a Minsky machine before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|MBB(1)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;0+*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(2)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(3)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0+C_0-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(4)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1+C_0-BD_1-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;0-DB_0+C_1-ED_1+A_1-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(6)&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1-FC_1+D_0-CE_0+A_1-A*&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=6034</id>
		<title>User:Azerty/Busy Beaver Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=6034"/>
		<updated>2026-01-11T14:04:46Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* De Bruijn */ Updated lower bound&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of Busy Beaver functions for Turing machines and other simple Turing-complete systems and their current lower bounds.&lt;br /&gt;
&lt;br /&gt;
I only add functions that meet the requirements below:&lt;br /&gt;
&lt;br /&gt;
* The function must grow uncomputably fast, like BB(n).&lt;br /&gt;
* The function must not have similar champions to other function, like Σ(n).&lt;br /&gt;
* The function must not be arbitrary complex.&lt;br /&gt;
&lt;br /&gt;
== Turing machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver Functions|Classic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2)|BB(2,2)]]&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,3,1)&lt;br /&gt;
|14&lt;br /&gt;
|{{TM|0RB---1LB_1LA2RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3)|BB(3,2)]]&lt;br /&gt;
|21&lt;br /&gt;
|{{TM|1RB---_1LB0RC_1LC1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,3)]]&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(4,2,1)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB---_1LB0LC_1RD1LD_0RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,2)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB---0RC_2LC------_2RC0LC1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4)|BB(4,2)]]&lt;br /&gt;
|107&lt;br /&gt;
|{{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,4,1)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(5,2,1)&lt;br /&gt;
|242&lt;br /&gt;
|{{TM|1RB0LA_1RC0LA_1LD0RE_---1LA_---0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,4)]]&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,1)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA_1LC1LA2RB_---1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(5)|BB(5,2)]]&lt;br /&gt;
|47,176,870&lt;br /&gt;
|{{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(6,2,1)&lt;br /&gt;
|17,397,627,083&lt;br /&gt;
|{{TM|1RB0LA_1RC1RD_1LB1RA_---0RE_1LF0RC_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;1.191 \times 10^{17}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,5)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,6)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10^{10^{115}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3RB5RA1LB5LA2LB_2LA2RA4RB---3LB2LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(6)|BB(6,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_1RC---_1LD0RF_1RA0LE_0LD1RC_1RA0RE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10^{28}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(7)|BB(7,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{11} 10 \uparrow^{10} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LC1LF_1RD0LB_1RA1LE_---0LC_1RG1LD_0RG0RF|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,4)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(9,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega(10 \uparrow^{7} 10 \uparrow^{7} 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_1LB0LH|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,5)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(10,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(11,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(12,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(15,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(16,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,7)]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Instruction-Limited Busy Beaver|Instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(5)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(6)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(7)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(9)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(29)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(31)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turing machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB---2RB_2LB2RA0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2,1)&lt;br /&gt;
|11&lt;br /&gt;
|{{TM|1RB---_0RC0RB_1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|0RB0LB_0RC1RC_1LA0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB0RA0RB_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4,1)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB3RA0RB0RA_2LA2RB1LB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4)&lt;br /&gt;
|49&lt;br /&gt;
|{{TM|1RB2RA2RB2LA_2LB0RA3RB0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2,1)&lt;br /&gt;
|55&lt;br /&gt;
|{{TM|0RB---_1RC0LD_1RD1RB_1LB0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2)&lt;br /&gt;
|63&lt;br /&gt;
|{{TM|0RB0LD_0RC1LC_0RD1LA_1LB1RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(5,2,1)&lt;br /&gt;
|70&lt;br /&gt;
|{{TM|0RB---_0RC1LC_1RD0RE_1RE1RD_1LE1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3,2)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3)&lt;br /&gt;
|202&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,3,2)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turing machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBti(3)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(4)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(5)&lt;br /&gt;
|18&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(6)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB------_1RC------_1RD------_2LD2RD0RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(7)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(8)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function|Blanking]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2,1)&lt;br /&gt;
|16&lt;br /&gt;
|{{TM|1RB---_1LC0LC_1RC0LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3,1)&lt;br /&gt;
|22&lt;br /&gt;
|{{TM|1RB2LB---_2LA0RB1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2)&lt;br /&gt;
|34&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2,1)&lt;br /&gt;
|169&lt;br /&gt;
|{{TM|1RB---_0RC0LA_1LC1LD_0RB0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,2)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,1)&lt;br /&gt;
|308&lt;br /&gt;
|{{TM|1RB1RC---_1LB1RA2RB_0RB2LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2)&lt;br /&gt;
|32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5,2)&lt;br /&gt;
|32,810,047&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6,2)&lt;br /&gt;
|65,538,549&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function#Instruction-limited Blanking Busy Beaver (BLBi(n))|Blanking instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2)&lt;br /&gt;
|19&lt;br /&gt;
|{{TM|1RB1RA_0RC---_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2,1)&lt;br /&gt;
|32&lt;br /&gt;
|{{TM|1RB---_1LC---_0LD0LC_1RD0RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2,1)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(5)&lt;br /&gt;
|23&lt;br /&gt;
|{{TM|1RB------_0RC------_1LC2LB0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(6)&lt;br /&gt;
|66&lt;br /&gt;
|{{TM|1RB------_1LB0LC---_1RC2RA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(7)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(8)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(9)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBws(2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(3)&lt;br /&gt;
|20&lt;br /&gt;
|{{TM|1RB---_0LC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(4)&lt;br /&gt;
|53&lt;br /&gt;
|{{TM|1RB1LB_1LC1RD_1RA1LA_---0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(5)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move and write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol and go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(4)&lt;br /&gt;
|29&lt;br /&gt;
|{{TM|1RB1RD_0LC0LA_1LC1LA_0RC---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(5)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Reversible Turing Machine|Reversible]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol reversible Turing machine with k+1 instructions transitions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|0RB---_1LA1RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|0RB---_0LC1RA_1RB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(4,2)&lt;br /&gt;
|48&lt;br /&gt;
|{{TM|1RB0LD_0LC0RB_1LA1LD_1LC---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(5,2)&lt;br /&gt;
|388&lt;br /&gt;
|{{TM|1RB0RD_1RC0RB_1RD---_1LE1LA_0LE0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(6,2)&lt;br /&gt;
|537,556&lt;br /&gt;
|{{TM|1RB1LD_1LC1RE_0LD0LC_0RE0RF_0RA---_1RF1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(7,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{19}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LD_0LC0LD_1LC1LA_0LA1RE_0RF0RE_0RG1RF_0RB---|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Maximum Consecutive Ones Function|Consecutive ones]] ===&lt;br /&gt;
Maximum number of consecutive 1s left on the tape by a n-state, m-symbol Turing machine with k+1 undefined instructions after halting. TMs must leave all their 1s consecutively.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2,1)&lt;br /&gt;
|2&lt;br /&gt;
|{{TM|1RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LC_1RC---_1LA0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,3)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB0LA_1RC1LB_1LB1RD_---0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,3)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB1RA---_1LC1LC2LA_2RA1LB1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(5,2)&lt;br /&gt;
|165&lt;br /&gt;
|{{TM|1RB1LA_1RC1LE_1RD1RE_0LA1RC_---0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler preperiod|Preperiodic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before turning into a translated cycler.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB---_1LB0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0LB_1LA0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(3,2)&lt;br /&gt;
|101&lt;br /&gt;
|{{TM|1RB1LB_0RC0LA_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(4,2)&lt;br /&gt;
|119,120,230,102&lt;br /&gt;
|{{TM|1RB1LC_0LA1RD_0RB0LC_1LA0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;2 \times 10^{23}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA1RA1LB_0LB2RB3RB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|&amp;lt;math&amp;gt;5.418 \times 10^{51}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{14,006}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_0LC0LB_0LD1LC_1RD1RA_0RC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0LB2LA_1LA0RC0LB_2RC2RB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler period|Periodic]] ===&lt;br /&gt;
Maximum translated cycler period done by a n-state, m-symbol Turing Machine with k undefined instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0RB_1LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,2)&lt;br /&gt;
|92&lt;br /&gt;
|{{TM|1RB0LA_0RC1LA_1LC0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|1,195&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,4)&lt;br /&gt;
|33,209,131&lt;br /&gt;
|{{TM|1RB0RA3LB1RB_2LA0LB1RA2RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(4,2)&lt;br /&gt;
|212,081,736&lt;br /&gt;
|{{TM|1RB0LA_0RC1RD_1LD0RB_1LA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|8,468,569,863&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Turing machine variations ==&lt;br /&gt;
&lt;br /&gt;
=== [[Terminating Turmite|Turmite]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k+1 undefined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2,1)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PC0PB_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0PC_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2,1)&lt;br /&gt;
|139&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PD0TC_---0TA_1TA1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3,1)&lt;br /&gt;
|683&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA---_1PC1PB0TC_2PA1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2)&lt;br /&gt;
|758&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_0PD1PB_1PA1TA_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,4)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite instructions ===&lt;br /&gt;
Maximum number of steps done by a Turmite machine with n defined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTi(2)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(3)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(4)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(5)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(7)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(8)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turmite machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_1TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2TB---_1TA0PB0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1PC1TC_1TB0PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB0PC_1PC0TA_1TB1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4,1)&lt;br /&gt;
|44&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PB0PB---_2TB2TA3TA1TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2,1)&lt;br /&gt;
|48&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PC_0TB1TD_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,2)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,1)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---1TC_2PC1TA0PB_2TB2TC2PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3)&lt;br /&gt;
|134&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PC2TB_1TC0TA0PB_2TC1TA2TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2)&lt;br /&gt;
|166&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_0PC0TA_0PD0PB_1TB1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turmite machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTti(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(4)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_1TC1PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(5)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_0PD---_1TC0TD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(6)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(7)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(8)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2,1)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PC0TC_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2,1)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2)&lt;br /&gt;
|267&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TD_1PC0PA_0PA0TD_1PD0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,4)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,3)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(3)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(4)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(6)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(8)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(9)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol turmite machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2,1)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PC_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PC0PA_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2,1)&lt;br /&gt;
|30&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_1PD0PC_0PA---_0PB---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(3)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(4)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(5)&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TA_2PB0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(6)&lt;br /&gt;
|36&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TC_2PB0PA---_0TB------&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(7)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Lambda calculus ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for SKI calculus#SK calculus|SK calculus]] ===&lt;br /&gt;
Maximum normal form size of any closed SK term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;SSSS&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(6)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(7)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(S(SKS))S&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BCKW calculus ===&lt;br /&gt;
Maximum normal form size of any closed BCKW term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;BBB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(4)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(5)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BBB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(6)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(7)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BBB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(WB(BB)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for lambda calculus#De Bruijn|De Bruijn]] ===&lt;br /&gt;
Maximum normal form size of any closed lambda term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBL(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(9)&lt;br /&gt;
|68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(10)&lt;br /&gt;
|&amp;lt;math&amp;gt;7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(12)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(13)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(15)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(18)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^3}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(26)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\epsilon_0 \times \omega^{\omega^3}}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 1) (\\1 2 1) (\1 (\2 1 2))) (\\\2 3 (\3 1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tag system ==&lt;br /&gt;
&lt;br /&gt;
=== 2-tag system ===&lt;br /&gt;
Maximum number of transformations performed with a 2-tag system of size n. Its size if the sum of the number of letters and the number of different letters.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(4)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(5)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(6)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(7)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(8)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(9)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(11)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(12)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bc, a, aaa&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Cyclic tag ===&lt;br /&gt;
Maximum number of transformations that can be done with a cyclic tag system of size n. Its size if the sum of the number of bits and the number of instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(6)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(7)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(9)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(10)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 0000&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tree rewriting ===&lt;br /&gt;
Maximum number of transformations that can be done with a tree rewriting system of size n. Its size if the number of brackets.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: () P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(4)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(5)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(8)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(14)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()(()) P: (()) &amp;gt; ((())), ()()() &amp;gt; _, () &amp;gt; ()()&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(23)&lt;br /&gt;
|672&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: ()() &amp;gt; (()())(), ()() &amp;gt; ()()(()), () &amp;gt; (()), (((()))) &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(38)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 10 \uparrow 54&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: (())(()()) P: (()()) &amp;gt; (()())(()), (()()) &amp;gt; (()())(()), ()(()) &amp;gt; (())((())), ((())) &amp;gt; ((()))()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(45)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 130&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((())) P: ((())) &amp;gt; ((()))(()()), (()()) &amp;gt; (()())(()), (()) &amp;gt; (())(()()()), (()()()) &amp;gt; (()()())()(), ()()() &amp;gt; _, () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(69)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((()())) P: ((()())) &amp;gt; ((()()))((())), ((())) &amp;gt; ((()))(()()()), ((())) &amp;gt; ((()))(()()()), (()()()) &amp;gt; (()()())(()()), (()()) &amp;gt; (()())(())(()), (()) &amp;gt; (())()()()()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Fractran ==&lt;br /&gt;
&lt;br /&gt;
=== [[Fractran]] ===&lt;br /&gt;
Maximum number of instructions applied by a fractran program of size n before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBf(10)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;[729/2, 1/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(11)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;[27/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(12)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(13)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(14)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;[243/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(15)&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 25/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(16)&lt;br /&gt;
|53&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 125/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(17)&lt;br /&gt;
|107&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 40/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(18)&lt;br /&gt;
|211&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 80/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(19)&lt;br /&gt;
|370&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 160/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(20)&lt;br /&gt;
|746&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 22/3, 6/77, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(21)&lt;br /&gt;
|31,957,632&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 4/3, 27/14, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.146 \times 10^{62}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/12, 9/10, 14/3, 11/2, 5/7, 3/11]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Brainfuck ==&lt;br /&gt;
&lt;br /&gt;
=== Brainfuck ===&lt;br /&gt;
Maximum number of instructions read by a brainfuck program with n instructions (uses &amp;lt;code&amp;gt;+-&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols). Cells size are unbounded and can have negative values.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;++++++&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[-]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(8)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;+++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(9)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(10)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;+++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(11)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;+[[&amp;gt;]-&amp;lt;+&amp;lt;+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Boolfuck ===&lt;br /&gt;
Maximum number of instructions read by a boolfuck program with n instructions (uses &amp;lt;code&amp;gt;*&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(10)&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(11)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(12)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(13)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(14)&lt;br /&gt;
|58&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+[&amp;lt;+&amp;lt;+[&amp;gt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(17)&lt;br /&gt;
|109&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(19)&lt;br /&gt;
|112&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(20)&lt;br /&gt;
|180&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(22)&lt;br /&gt;
|183&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(23)&lt;br /&gt;
|269&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BitChanger ===&lt;br /&gt;
Maximum number of instructions read by a bitchanger program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;}[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(9)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(10)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(11)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(12)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitter ===&lt;br /&gt;
Maximum number of instructions read by a bitter program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(11)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(12)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Minsky machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Register machine|Minsky machines]] ===&lt;br /&gt;
Maximum number of steps done by a Minsky machine before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|MBB(1)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;0+*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(2)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(3)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0+C_0-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(4)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1+C_0-BD_1-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;0-DB_0+C_1-ED_1+A_1-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(6)&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1-FC_1+D_0-CE_0+A_1-A*&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Champions_Zoology&amp;diff=5990</id>
		<title>User:Azerty/Champions Zoology</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Champions_Zoology&amp;diff=5990"/>
		<updated>2026-01-05T14:41:09Z</updated>

		<summary type="html">&lt;p&gt;Azerty: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a zoology of champions and what they compute.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Classification&lt;br /&gt;
!Examples&lt;br /&gt;
!Scale&lt;br /&gt;
|-&lt;br /&gt;
|Trivial&lt;br /&gt;
|&lt;br /&gt;
|&amp;lt;math&amp;gt;O(n)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Multiplier&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB2LB---_2LA2RB1LB|halt}} BB(2,3)&lt;br /&gt;
* {{TM|1RB1LB_1LA1LC_1RC0LC|halt}} BLB(3,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(n^2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Piecewise Affine Function]]&lt;br /&gt;
|&lt;br /&gt;
* &amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt; TT(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(2^n)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Chaotic&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB1LB_1LA---|halt}} BB(2,2)&lt;br /&gt;
* {{TM|1RB---_1LB0RC_1LC1LA|halt}} BB(3,2)&lt;br /&gt;
* {{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}} BB(4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(2^n)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Exponentiater&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}} BBti(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(2^n)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Collatz-like]]&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}} BB(2,4)&lt;br /&gt;
* {{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}} BB(5,2)&lt;br /&gt;
* {{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}} BB(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(2^n)&amp;lt;/math&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=Blanking_Busy_Beaver_Function&amp;diff=5989</id>
		<title>Blanking Busy Beaver Function</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=Blanking_Busy_Beaver_Function&amp;diff=5989"/>
		<updated>2026-01-04T21:20:54Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* Champions */ I found the BLBi(7) champion!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;Blanking Busy Beaver Function&#039;&#039;&#039; (BLB(n,m)) is a [[Busy Beaver Functions|Busy Beaver Function]] which measures the largest amount of steps done by any [[Turing machine]] with n states and m symbols before blanking the tape. Blanking Busy Beaver machines are allowed to be halting or non-halting. As machines with just a single state cannot blank the tape, BLB(1,m) is nonexistent for any amount of symbols m. Similarly, BLB(n,1) is nonexistent for any amount of states n, as the tape of [[BB(n,1)|1-symbol machines]] is always blank.&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&#039;&#039;&#039;2 Symbols:&#039;&#039;&#039;&lt;br /&gt;
!Steps&lt;br /&gt;
!Champions&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2)&lt;br /&gt;
|8&amp;lt;ref name=&amp;quot;:3&amp;quot;&amp;gt;Nick Drozd. &amp;quot;[https://nickdrozd.github.io/2021/02/14/blanking-beavers.html Blanking Beavers]&amp;quot;. Accessed 15 August 2025.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3)&lt;br /&gt;
|≥ 34&amp;lt;ref name=&amp;quot;:4&amp;quot;&amp;gt;Nick Drozd. &amp;quot;[https://nickdrozd.github.io/2022/02/11/latest-beeping-busy-beaver-results.html Latest Beeping Busy Beaver Results]&amp;quot;. Accessed 15 August 2025.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4)&lt;br /&gt;
|≥ 32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5)&lt;br /&gt;
|≥ 32,810,047&amp;lt;ref&amp;gt;Comment #71 &amp;quot;https://scottaaronson.blog/?p=5661&amp;quot;. Accessed 26 September 2025.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6)&lt;br /&gt;
|≥ 65,538,549&amp;lt;ref&amp;gt;Comment #62 &amp;quot;https://scottaaronson.blog/?p=5661&amp;quot;. Accessed 26 September 2025.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&#039;&#039;&#039;3 Symbols:&#039;&#039;&#039;&lt;br /&gt;
!Steps&lt;br /&gt;
!Champions&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|≥ 77&amp;lt;ref name=&amp;quot;:4&amp;quot; /&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3)&lt;br /&gt;
|≥ 329&lt;br /&gt;
|{{TM|1RB2LC2LA_1LC---2RA_2RC2LB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&#039;&#039;&#039;4 Symbols:&#039;&#039;&#039;&lt;br /&gt;
!Steps&lt;br /&gt;
!Champions&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|≥ 1,367,361,263,049&amp;lt;ref name=&amp;quot;:4&amp;quot; /&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [[Instruction-Limited Busy Beaver|Instruction-limited]] Blanking Busy Beaver (BLBi(n)) ==&lt;br /&gt;
BLBi(n) is the largest amount of steps taken by an n-instruction Turing machine when blanking the tape for the first time after having written a non-blank symbol on the tape.&lt;br /&gt;
&lt;br /&gt;
=== Champions ===&lt;br /&gt;
Note that BLBi(1) and BLBi(2) are nonexistent as Turing machines with one or two instructions cannot blank the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Instructions&lt;br /&gt;
!Steps&lt;br /&gt;
!Champions&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|808&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD2LC---_1LD2RD0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|≥ 1,367,361,263,049&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
[[Category:Functions]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=Blanking_Busy_Beaver_Function&amp;diff=5988</id>
		<title>Blanking Busy Beaver Function</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=Blanking_Busy_Beaver_Function&amp;diff=5988"/>
		<updated>2026-01-04T17:46:38Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* Champions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;Blanking Busy Beaver Function&#039;&#039;&#039; (BLB(n,m)) is a [[Busy Beaver Functions|Busy Beaver Function]] which measures the largest amount of steps done by any [[Turing machine]] with n states and m symbols before blanking the tape. Blanking Busy Beaver machines are allowed to be halting or non-halting. As machines with just a single state cannot blank the tape, BLB(1,m) is nonexistent for any amount of symbols m. Similarly, BLB(n,1) is nonexistent for any amount of states n, as the tape of [[BB(n,1)|1-symbol machines]] is always blank.&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&#039;&#039;&#039;2 Symbols:&#039;&#039;&#039;&lt;br /&gt;
!Steps&lt;br /&gt;
!Champions&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2)&lt;br /&gt;
|8&amp;lt;ref name=&amp;quot;:3&amp;quot;&amp;gt;Nick Drozd. &amp;quot;[https://nickdrozd.github.io/2021/02/14/blanking-beavers.html Blanking Beavers]&amp;quot;. Accessed 15 August 2025.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3)&lt;br /&gt;
|≥ 34&amp;lt;ref name=&amp;quot;:4&amp;quot;&amp;gt;Nick Drozd. &amp;quot;[https://nickdrozd.github.io/2022/02/11/latest-beeping-busy-beaver-results.html Latest Beeping Busy Beaver Results]&amp;quot;. Accessed 15 August 2025.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4)&lt;br /&gt;
|≥ 32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5)&lt;br /&gt;
|≥ 32,810,047&amp;lt;ref&amp;gt;Comment #71 &amp;quot;https://scottaaronson.blog/?p=5661&amp;quot;. Accessed 26 September 2025.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6)&lt;br /&gt;
|≥ 65,538,549&amp;lt;ref&amp;gt;Comment #62 &amp;quot;https://scottaaronson.blog/?p=5661&amp;quot;. Accessed 26 September 2025.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&#039;&#039;&#039;3 Symbols:&#039;&#039;&#039;&lt;br /&gt;
!Steps&lt;br /&gt;
!Champions&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|≥ 77&amp;lt;ref name=&amp;quot;:4&amp;quot; /&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3)&lt;br /&gt;
|≥ 329&lt;br /&gt;
|{{TM|1RB2LC2LA_1LC---2RA_2RC2LB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&#039;&#039;&#039;4 Symbols:&#039;&#039;&#039;&lt;br /&gt;
!Steps&lt;br /&gt;
!Champions&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|≥ 1,367,361,263,049&amp;lt;ref name=&amp;quot;:4&amp;quot; /&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [[Instruction-Limited Busy Beaver|Instruction-limited]] Blanking Busy Beaver (BLBi(n)) ==&lt;br /&gt;
BLBi(n) is the largest amount of steps taken by an n-instruction Turing machine when blanking the tape for the first time after having written a non-blank symbol on the tape.&lt;br /&gt;
&lt;br /&gt;
=== Champions ===&lt;br /&gt;
Note that BLBi(1) and BLBi(2) are nonexistent as Turing machines with one or two instructions cannot blank the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Instructions&lt;br /&gt;
!Steps&lt;br /&gt;
!Champions&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|808&lt;br /&gt;
|?&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|≥ 1,367,361,263,049&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
[[Category:Functions]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=Blanking_Busy_Beaver_Function&amp;diff=5987</id>
		<title>Blanking Busy Beaver Function</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=Blanking_Busy_Beaver_Function&amp;diff=5987"/>
		<updated>2026-01-04T17:46:14Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* Champions */ BLB(2) is proven&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;Blanking Busy Beaver Function&#039;&#039;&#039; (BLB(n,m)) is a [[Busy Beaver Functions|Busy Beaver Function]] which measures the largest amount of steps done by any [[Turing machine]] with n states and m symbols before blanking the tape. Blanking Busy Beaver machines are allowed to be halting or non-halting. As machines with just a single state cannot blank the tape, BLB(1,m) is nonexistent for any amount of symbols m. Similarly, BLB(n,1) is nonexistent for any amount of states n, as the tape of [[BB(n,1)|1-symbol machines]] is always blank.&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&#039;&#039;&#039;2 Symbols:&#039;&#039;&#039;&lt;br /&gt;
!Steps&lt;br /&gt;
!Champions&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2)&lt;br /&gt;
|= 8&amp;lt;ref name=&amp;quot;:3&amp;quot;&amp;gt;Nick Drozd. &amp;quot;[https://nickdrozd.github.io/2021/02/14/blanking-beavers.html Blanking Beavers]&amp;quot;. Accessed 15 August 2025.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3)&lt;br /&gt;
|≥ 34&amp;lt;ref name=&amp;quot;:4&amp;quot;&amp;gt;Nick Drozd. &amp;quot;[https://nickdrozd.github.io/2022/02/11/latest-beeping-busy-beaver-results.html Latest Beeping Busy Beaver Results]&amp;quot;. Accessed 15 August 2025.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4)&lt;br /&gt;
|≥ 32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5)&lt;br /&gt;
|≥ 32,810,047&amp;lt;ref&amp;gt;Comment #71 &amp;quot;https://scottaaronson.blog/?p=5661&amp;quot;. Accessed 26 September 2025.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6)&lt;br /&gt;
|≥ 65,538,549&amp;lt;ref&amp;gt;Comment #62 &amp;quot;https://scottaaronson.blog/?p=5661&amp;quot;. Accessed 26 September 2025.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&#039;&#039;&#039;3 Symbols:&#039;&#039;&#039;&lt;br /&gt;
!Steps&lt;br /&gt;
!Champions&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|≥ 77&amp;lt;ref name=&amp;quot;:4&amp;quot; /&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3)&lt;br /&gt;
|≥ 329&lt;br /&gt;
|{{TM|1RB2LC2LA_1LC---2RA_2RC2LB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&#039;&#039;&#039;4 Symbols:&#039;&#039;&#039;&lt;br /&gt;
!Steps&lt;br /&gt;
!Champions&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|≥ 1,367,361,263,049&amp;lt;ref name=&amp;quot;:4&amp;quot; /&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [[Instruction-Limited Busy Beaver|Instruction-limited]] Blanking Busy Beaver (BLBi(n)) ==&lt;br /&gt;
BLBi(n) is the largest amount of steps taken by an n-instruction Turing machine when blanking the tape for the first time after having written a non-blank symbol on the tape.&lt;br /&gt;
&lt;br /&gt;
=== Champions ===&lt;br /&gt;
Note that BLBi(1) and BLBi(2) are nonexistent as Turing machines with one or two instructions cannot blank the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Instructions&lt;br /&gt;
!Steps&lt;br /&gt;
!Champions&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|808&lt;br /&gt;
|?&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|≥ 1,367,361,263,049&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
[[Category:Functions]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty&amp;diff=5976</id>
		<title>User:Azerty</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty&amp;diff=5976"/>
		<updated>2026-01-02T21:55:29Z</updated>

		<summary type="html">&lt;p&gt;Azerty: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I am an amateur interested in computability theory, large numbers and BB functions.&lt;br /&gt;
&lt;br /&gt;
My web pages:&lt;br /&gt;
&lt;br /&gt;
* [https://azertywastaken.github.io/TuringMachinesSimulator/tm_simulator Turing machines simulator]&lt;br /&gt;
* [https://azertywastaken.github.io/TuringMachinesSimulator/bb_champions List of lower bounds and champions]&lt;br /&gt;
&lt;br /&gt;
My GitHub repositories:&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/AzertyWasTaken/OrdinalNotations Ordinal notations]&lt;br /&gt;
* [https://github.com/AzertyWasTaken/SearchBB Search BB champions script]&lt;br /&gt;
&lt;br /&gt;
My wiki user pages:&lt;br /&gt;
&lt;br /&gt;
* [[User:Azerty/Busy Beaver Functions|List of lower bounds and champions]]&lt;br /&gt;
* [[User:Azerty/Turing Completeness|List of Turing-complete systems]]&lt;br /&gt;
* [[User:Azerty/Champions Zoology|Champions Zoology]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty&amp;diff=5972</id>
		<title>User:Azerty</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty&amp;diff=5972"/>
		<updated>2026-01-02T16:19:51Z</updated>

		<summary type="html">&lt;p&gt;Azerty: Added a link to my champions web page.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I am an amateur interested in computability theory, large numbers and BB functions.&lt;br /&gt;
&lt;br /&gt;
My web pages:&lt;br /&gt;
&lt;br /&gt;
* [https://azertywastaken.github.io/TuringMachinesSimulator/tm_simulator Turing machines simulator]&lt;br /&gt;
* [https://azertywastaken.github.io/TuringMachinesSimulator/bb_champions List of lower bounds and champions]&lt;br /&gt;
&lt;br /&gt;
My GitHub repositories:&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/AzertyWasTaken/OrdinalNotations Ordinal notations]&lt;br /&gt;
* [https://github.com/AzertyWasTaken/SearchBB Search BB champions script]&lt;br /&gt;
&lt;br /&gt;
My user pages:&lt;br /&gt;
&lt;br /&gt;
* [[User:Azerty/Busy Beaver Functions|List of lower bounds and champions]]&lt;br /&gt;
* [[User:Azerty/Turing Completeness|List of Turing-complete systems]]&lt;br /&gt;
* [[User:Azerty/Champions Zoology|Champions Zoology]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=Main_Page&amp;diff=5971</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=Main_Page&amp;diff=5971"/>
		<updated>2026-01-02T16:01:10Z</updated>

		<summary type="html">&lt;p&gt;Azerty: Added BB(n,1) = n&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The [[Busy Beaver function]] BB (called &#039;&#039;S&#039;&#039; originally) was introduced by [[Tibor Radó]] in 1962 for 2-symbol [[Turing machines]] and later generalised to &#039;&#039;m&#039;&#039;-symbol Turing machines:&amp;lt;ref&amp;gt;Radó, T. (1962), On Non-Computable Functions. Bell System Technical Journal, 41: 877-884. https://doi.org/10.1002/j.1538-7305.1962.tb00480.x&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;Brady, Allen H, and the Meaning of Life, &#039;The Busy Beaver Game and the Meaning of Life&#039;, in Rolf Herken (ed.), The Universal Turing Machine: A Half-Century Survey (Oxford, 1990; online edn, Oxford Academic, 31 Oct. 2023), https://doi.org/10.1093/oso/9780198537748.003.0009, accessed 8 June 2024.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| BB(&#039;&#039;n&#039;&#039;, &#039;&#039;m&#039;&#039;) = Maximum number of steps taken by a halting &#039;&#039;n&#039;&#039;-state, &#039;&#039;m&#039;&#039;-symbol Turing machine starting from a blank (all 0) tape&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The 2-symbol case BB(&#039;&#039;n&#039;&#039;, 2) is abbreviated as BB(&#039;&#039;n&#039;&#039;). The busy beaver function is not computable, but a few of its values are known:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Small busy beaver values&amp;lt;ref&amp;gt;P. Michel, &amp;quot;[https://bbchallenge.org/~pascal.michel/ha.html Historical survey of Busy Beavers]&amp;quot;.&amp;lt;/ref&amp;gt;&lt;br /&gt;
! !!2-state!!3-state !!4-state!!5-state!!6-state &lt;br /&gt;
!7-state&lt;br /&gt;
|-  &lt;br /&gt;
! 2-symbol &lt;br /&gt;
| [[BB(2)]] = 6 &lt;br /&gt;
| [[BB(3)]] = 21&lt;br /&gt;
| [[BB(4)]] = 107 &lt;br /&gt;
| [[BB(5)]] = 47,176,870 &lt;br /&gt;
| style=&amp;quot;background: orange;&amp;quot; | [[BB(6)]] &amp;gt; &amp;lt;math&amp;gt;2 \uparrow \uparrow \uparrow 5&amp;lt;/math&amp;gt;&lt;br /&gt;
| style=&amp;quot;background: orange;&amp;quot; | [[BB(7)]] &amp;gt; &amp;lt;math&amp;gt;2 \uparrow^{11} 2 \uparrow^{11} 3&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
! 3-symbol&lt;br /&gt;
| [[BB(2,3)]] = 38 &lt;br /&gt;
| style=&amp;quot;background: orange;&amp;quot; | [[BB(3,3)]] &amp;gt; &amp;lt;math&amp;gt;10^{17}&amp;lt;/math&amp;gt;&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; | [[BB(4,3)]] &amp;gt; &amp;lt;math&amp;gt;10 \uparrow^{4} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
! 4-symbol  &lt;br /&gt;
| [[BB(2,4)]] = 3,932,964&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; | [[BB(3,4)]] &amp;gt; &amp;lt;math&amp;gt;2 \uparrow^{15} 5&amp;lt;/math&amp;gt;&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
! 5-symbol &lt;br /&gt;
| style=&amp;quot;background: orange;&amp;quot; | [[BB(2,5)]] &amp;gt; &amp;lt;math&amp;gt;10\uparrow\uparrow 4&amp;lt;/math&amp;gt;&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; | [[BB(3,5)]] &amp;gt; &amp;lt;math&amp;gt; f_\omega(2 \uparrow^{15} 5)&amp;lt;/math&amp;gt;&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
! 6-symbol &lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; | [[BB(2,6)]] &amp;gt; &amp;lt;math&amp;gt;10 \uparrow\uparrow\uparrow 3&amp;lt;/math&amp;gt;&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background: #ffe4b2;&amp;quot; |&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
In the above table, &amp;lt;span style=&amp;quot;background: orange&amp;quot;&amp;gt;cells are highlighted in orange&amp;lt;/span&amp;gt; when there are known [[Cryptids]] (mathematically-hard machines) in that class, and &amp;lt;span style=&amp;quot;background: #ffe4b2&amp;quot;&amp;gt;cells are highlighted in light orange&amp;lt;/span&amp;gt; when the existence of a Cryptid is given by using a known one with less states or symbols.&lt;br /&gt;
&lt;br /&gt;
1-state domains and 1-symbol domains are omitted in the table as [[BB(1,m)]] = 1 and [[BB(n,1)]] = n.&lt;br /&gt;
&lt;br /&gt;
== About bbchallenge ==&lt;br /&gt;
[[bbchallenge]] is a massively collaborative research project whose general goal is to obtain more knowledge on the [[Busy Beaver function]]. In practice, it mainly consists in collaboratively building [[Deciders]], programs that automatically prove that some Turing machines do not halt.  Other efforts also include:&lt;br /&gt;
&lt;br /&gt;
* Formalising results using theorem provers (such as [https://en.wikipedia.org/wiki/Rocq Rocq])&lt;br /&gt;
* Maintaining [[Holdouts lists]] for small busy beaver values&lt;br /&gt;
* [[Analysis Tools and Techniques|Proving]] the behavior of [[:Category:Individual Machines|Individual machines]]&lt;br /&gt;
* Finding [[Cryptids]] (mathematically-hard machines)&lt;br /&gt;
* Searching for new [[Champions]]&lt;br /&gt;
* Building [[Accelerated Simulator]]s to simulate halting machines faster&lt;br /&gt;
* Writing papers and giving talks about busy beaver, see [[Papers &amp;amp; Talks]]&lt;br /&gt;
&lt;br /&gt;
In June 2024, bbchallenge achieved a significant milestone by proving in [https://en.wikipedia.org/wiki/Rocq Rocq] (previously known as Coq) that the 5th busy beaver value, [[BB(5)]], is equal to the lower bound found in 1989: 47,176,870.&amp;lt;ref&amp;gt;H. Marxen and J. Buntrock. Attacking the Busy Beaver 5.&lt;br /&gt;
Bulletin of the EATCS, 40, pages 247-251, February 1990. https://turbotm.de/~heiner/BB/mabu90.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== This Month in Beaver Research (TMBR) ==&lt;br /&gt;
[[:Category:This Month in Beaver Research|This Month in Beaver Research]] (TMBR, pronounced &amp;quot;timber&amp;quot;) is a monthly summary of Busy Beaver research progress. Here are the three most recent released entries:&lt;br /&gt;
&lt;br /&gt;
* [[TMBR: November 2025|TMBR November 2025]]&lt;br /&gt;
* [[TMBR: October 2025|TMBR October 2025]]&lt;br /&gt;
* [[TMBR: September 2025|TMBR September 2025]]&lt;br /&gt;
&lt;br /&gt;
[[TMBR: December 2025|TMBR December 2025]] is currently work in progress.&lt;br /&gt;
&lt;br /&gt;
== Contribute to this wiki ==&lt;br /&gt;
This wiki is collaborative, feel free to contribute by editing existing pages or creating new ones:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;inputbox&amp;gt;&lt;br /&gt;
type=create&lt;br /&gt;
width=100&lt;br /&gt;
break=no&lt;br /&gt;
buttonlabel=Create new article&lt;br /&gt;
default=(Article title)&lt;br /&gt;
&amp;lt;/inputbox&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Turing_Completeness&amp;diff=5959</id>
		<title>User:Azerty/Turing Completeness</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Turing_Completeness&amp;diff=5959"/>
		<updated>2026-01-01T15:15:05Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* Turing-complete systems */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of systems that are Turing-complete.&lt;br /&gt;
&lt;br /&gt;
To be Turing-complete, a system must have unbounded memory, access to that memory, and loops that can repeat forever.&lt;br /&gt;
&lt;br /&gt;
== Turing-complete systems ==&lt;br /&gt;
&lt;br /&gt;
* 2-symbol Turing machine on a blank tape&lt;br /&gt;
* Uniform-action Turing machines with 2 states and a blank tape&lt;br /&gt;
* 15-state 2-symbol Turing machine&lt;br /&gt;
* 9-state 3-symbol Turing machine&lt;br /&gt;
* 6-state 4-symbol Turing machine&lt;br /&gt;
* 5-state 5-symbol Turing machine&lt;br /&gt;
* 4-state 6-symbol Turing machine&lt;br /&gt;
* 3-state 9-symbol Turing machine&lt;br /&gt;
* 2-state 18-symbol Turing machine&lt;br /&gt;
* 24-instruction Turing machines&lt;br /&gt;
&lt;br /&gt;
== Open problems about Turing-completenesss ==&lt;br /&gt;
&lt;br /&gt;
* Turing machines with minimum states and symbols count&lt;br /&gt;
* Turing machines with minimum instructions count&lt;br /&gt;
* Turing machines with minimum move left transitions count&lt;br /&gt;
* Turing machines with minimum states with 2 defined transitions and 2 symbols count&lt;br /&gt;
* Turing machines with minimum symbols with 2 defined transitions and 2 states count&lt;br /&gt;
* Turing machines with 2 symbols and a blank tape but each state must write the same symbol&lt;br /&gt;
* Turing machines with 2 symbols and a blank tape but each state must move in the same direction&lt;br /&gt;
* Turing machines with 2 states and a blank tape but each symbol must write the same symbol&lt;br /&gt;
* Turing machines with 2 states and a blank tape but each symbol must go to the same state&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=5958</id>
		<title>Busy Beaver for lambda calculus</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=Busy_Beaver_for_lambda_calculus&amp;diff=5958"/>
		<updated>2026-01-01T14:58:29Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* De Bruijn */ Updated De Bruijn Busy Beaver champions and discoverers.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Busy Beaver for lambda calculus&#039;&#039;&#039; (&#039;&#039;&#039;BBλ&#039;&#039;&#039;) is a variation of the [[Busy Beaver]] problem for [https://en.wikipedia.org/wiki/Lambda_calculus lambda calculus] invented by John Tromp. BBλ(n) = the maximum normal form size of any closed lambda term of size n. Like the traditional Busy Beaver functions, it is uncomputable (and in fact grows faster than any computable function). If you are not familiar with lambda calculus and beta-reduction, it is recommended to start with that article.&lt;br /&gt;
&lt;br /&gt;
Size is measured in bits using [https://tromp.github.io/cl/Binary_lambda_calculus.html Binary Lambda Calculus] which is a binary prefix-free encoding for all closed lambda calculus terms.&lt;br /&gt;
&lt;br /&gt;
== Analogy to Turing machines ==&lt;br /&gt;
We evaluate terms by applying &#039;&#039;beta-reductions&#039;&#039; until they reach a &#039;&#039;normal form&#039;&#039;. As an analogy to [[Turing machines]]:&lt;br /&gt;
* &#039;&#039;Lambda terms&#039;&#039; are like TM configurations (tape + state + position).&lt;br /&gt;
* Applying &#039;&#039;beta-reduction&#039;&#039; to a term is like taking a TM step.&lt;br /&gt;
* A term is in &#039;&#039;normal form&#039;&#039; if no beta-reductions can be applied. This is like saying the term has halted.&lt;br /&gt;
* A term may or may not be reducible to a normal form. If it is, this is like saying the term halts.&lt;br /&gt;
* Determining whether a term is reducible to a normal form is an undecidable problem equivalent to the halting problem.&lt;br /&gt;
&lt;br /&gt;
Note: That unlike for Turing machines, evaluating lambda terms is non-deterministic. Specifically, there may be multiple beta-reductions possible in a given term. However, if a term can be reduced to a normal form, that normal form is unique. It is not possible to reduce the original term to any different normal form. A term is &#039;&#039;&#039;strongly normalizing&#039;&#039;&#039; if any choice of beta-reductions will lead to this normal form and &#039;&#039;&#039;weakly normalizing&#039;&#039;&#039; if there exist divergent reduction paths which never reach the normal form.&lt;br /&gt;
&lt;br /&gt;
== Proof of Uncomputability ==&lt;br /&gt;
The proof that BBλ(n) is uncomputable is very similar to Radó&#039;s original proof that Σ(n) is uncomputable. Proof by contradiction:&lt;br /&gt;
&lt;br /&gt;
Assume BBλ is computable and so there exists a term &#039;&#039;f&#039;&#039; which computes it on [[wikipedia:Church_encoding|Church numerals]]. In other words: for all &amp;lt;math&amp;gt;n \in \N&amp;lt;/math&amp;gt;: &amp;lt;math&amp;gt;(f \; C_n)&amp;lt;/math&amp;gt; beta reduces to normal form &amp;lt;math&amp;gt;C_{BB\lambda(n)}&amp;lt;/math&amp;gt; (where &amp;lt;math&amp;gt;C_n&amp;lt;/math&amp;gt; denotes the Church numeral &#039;&#039;n&#039;&#039;). Denote the binary lambda encoded size of &#039;&#039;f&#039;&#039; as &#039;&#039;k&#039;&#039;. Consider the term &amp;lt;math&amp;gt;f \; (C_2 \; C_n)&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;2+k+2+(5\times2+6)+(5n+6) = 5n + k + 26&amp;lt;/math&amp;gt; bits. This term reduces to &amp;lt;math&amp;gt;C_{BB\lambda(n^2)}&amp;lt;/math&amp;gt; which has size &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6&amp;lt;/math&amp;gt; bits. But for sufficiently large n, &amp;lt;math&amp;gt;n^2 &amp;gt; 5n + k + 26&amp;lt;/math&amp;gt; and so  &amp;lt;math&amp;gt;5 \cdot BB\lambda(n^2) + 6 &amp;gt; BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;. But this is a contradiction, we&#039;ve found a &amp;lt;math&amp;gt;5n + k + 26&amp;lt;/math&amp;gt; bit term which reduces to a normal form larger than &amp;lt;math&amp;gt;BB\lambda(5n + k + 26)&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Thus BBλ(n) is uncomputable. A variation of this argument shows that BBλ(n) eventually dominates all computable functions.&lt;br /&gt;
&lt;br /&gt;
== Binary Lambda Encoding ==&lt;br /&gt;
A lambda term using [https://en.wikipedia.org/wiki/De_Bruijn_indices De Bruijn indexes] is defined inductively as:&lt;br /&gt;
* Variables: For any &amp;lt;math&amp;gt;n \in \mathbb{Z}^+&amp;lt;/math&amp;gt;, Var(&#039;&#039;n&#039;&#039;) is a term. It represents a variable bound by the lambda expression &#039;&#039;n&#039;&#039; above this one (the De Bruijn index). It is typically written simply as &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Lambdas: For any term &#039;&#039;T&#039;&#039;, Lam(&#039;&#039;T&#039;&#039;) is a term. It represents a unary function with function body &#039;&#039;T&#039;&#039;. It is typically written &amp;lt;math&amp;gt;\lambda T&amp;lt;/math&amp;gt; or &amp;lt;code&amp;gt;\T&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Applications: For any terms &#039;&#039;T, U&#039;&#039;, App(&#039;&#039;T, U&#039;&#039;) is a term. It represents applying function &#039;&#039;T&#039;&#039; to argument &#039;&#039;U&#039;&#039;. It is typically written &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can think of this as a tree where each variable is a leaf, a lambda is a node with one child and applications are nodes with 2 children. A term is &#039;&#039;&#039;closed&#039;&#039;&#039; if every variable is bound. In other words, for every Var(&#039;&#039;n&#039;&#039;) leaf node, there exists &#039;&#039;n&#039;&#039; Lam() nodes above it in the tree of the term.&lt;br /&gt;
&lt;br /&gt;
Encoding (&#039;&#039;blc()&#039;&#039;) is defined recursively:&lt;br /&gt;
&amp;lt;math display=&amp;quot;block&amp;quot;&amp;gt;\begin{array}{l}&lt;br /&gt;
  blc(Var(n)) &amp;amp; = &amp;amp; 1^n 0 \\&lt;br /&gt;
  blc(Lam(T)) &amp;amp; = &amp;amp; 00 \; blc(T) \\&lt;br /&gt;
  blc(App(T, U)) &amp;amp; = &amp;amp; 01 \; blc(T) \; blc(U) \\&lt;br /&gt;
\end{array}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For example, the [https://en.wikipedia.org/wiki/Church_encoding#Church_numerals Church numeral] 2: &amp;lt;math&amp;gt;\lambda f x. (f \; (f \; x))&amp;lt;/math&amp;gt; =  &amp;lt;code&amp;gt;\\(2 (2 1))&amp;lt;/code&amp;gt; = &amp;lt;code&amp;gt;Lam(Lam(App(Var(2), App(Var(2), Var(1))))&amp;lt;/code&amp;gt; is encoded as &amp;lt;code&amp;gt;00 00 01 110 01 110 10&amp;lt;/code&amp;gt; or simply &amp;lt;code&amp;gt;0000011100111010&amp;lt;/code&amp;gt; (spaces are not part of the encoding, only used for demonstration purposes) and thus has size 16 bits.&lt;br /&gt;
&lt;br /&gt;
== Text Encoding conventions ==&lt;br /&gt;
For human readability, a text encoding and set of conventions is used in this article. As described earlier we encode a lambda term as:&lt;br /&gt;
* Var(&#039;&#039;n&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt;&lt;br /&gt;
* Lam(&#039;&#039;T&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(\T)&amp;lt;/code&amp;gt;&lt;br /&gt;
* App(&#039;&#039;T, U&#039;&#039;) -&amp;gt; &amp;lt;code&amp;gt;(T U)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
However, parentheses are also dropped in certain cases by convention:&lt;br /&gt;
* The outermost parentheses are dropped: &amp;lt;code&amp;gt;Lam(1)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;App(1, 2)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped immediately inside a Lam: &amp;lt;code&amp;gt;Lam(Lam(1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;Lam(App(1, 1))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;\1 1&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Parentheses are dropped in nested Apps using left associativity: &amp;lt;code&amp;gt;App(App(1, 2), 3)&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 2 3&amp;lt;/code&amp;gt;. (Note: parentheses are still required for &amp;lt;code&amp;gt;App(1, App(2, 3))&amp;lt;/code&amp;gt; -&amp;gt; &amp;lt;code&amp;gt;1 (2 3)&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
This is the convention used in John Tromp&#039;s code and so is used here for consistency.&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
There are no closed lambda terms of size 0, 1, 2, 3 or 5 and so BBλ(n) is not defined for those values. The smallest closed lambda term is &amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt; which has size 4.&lt;br /&gt;
&lt;br /&gt;
For the rest of n ≤ 20: BBλ(n) = n is trivial and can be achieved via picking any n bit term already in normal form. For example &amp;lt;code&amp;gt;\\...\1&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;\\...\2&amp;lt;/code&amp;gt; with k lambdas has size 2k+2 and 2k+3 respectively (for k ≥ 1 and k ≥ 2 respectively).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!BBλ(n)&lt;br /&gt;
!Champion&lt;br /&gt;
!# Beta reductions&lt;br /&gt;
!Normal form&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|21 || = 22 || &amp;lt;code&amp;gt;\(\1 1) (1 (\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|1|| &amp;lt;code&amp;gt;\(1 (\2)) (1 (\2))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|22 || = 24 || &amp;lt;code&amp;gt;\(\1 1) (1 (\\1))&amp;lt;/code&amp;gt;&amp;lt;code&amp;gt;\(\1 1 1) (1 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|1&lt;br /&gt;
1&lt;br /&gt;
| &amp;lt;code&amp;gt;\(1 (\\1)) (1 (\\1))&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;\(1 1) (1 1) (1 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|23 || = 26 || &amp;lt;code&amp;gt;\(\1 1) (1 (\\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|1|| &amp;lt;code&amp;gt;\(1 (\\2)) (1 (\\2))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|24 || = 30 || &amp;lt;code&amp;gt;\(\1 1 1) (1 (\1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|1|| &amp;lt;code&amp;gt;\(1 (\1)) (1 (\1)) (1 (\1))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|25 || = 42 || &amp;lt;code&amp;gt;\(\1 1) (\1 (2 1))&amp;lt;/code&amp;gt; &lt;br /&gt;
|3|| &amp;lt;code&amp;gt;\1 (\1 (2 1)) (1 (1 (\1 (2 1))))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|26 || = 52 || &amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt; &lt;br /&gt;
|3|| &amp;lt;code&amp;gt;\\2 (\\2 (1 2)) (1 (2 (\\2 (1 2))))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|27 || = 44 || &amp;lt;code&amp;gt;\\(\1 1) (\1 (2 1))&amp;lt;/code&amp;gt; &lt;br /&gt;
|3|| &amp;lt;code&amp;gt;\\1 (\1 (2 1)) (1 (1 (\1 (2 1))))&amp;lt;/code&amp;gt; || John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|28 || = 58 || &amp;lt;code&amp;gt;\(\1 1) (\1 (2 (\2))))&amp;lt;/code&amp;gt; &lt;br /&gt;
|3|| &amp;lt;code&amp;gt;\1 (\\1 (3 (\2))) (1 (\2 (\\1 (4 (\2)))))&amp;lt;/code&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
| 29 || = 223|| &amp;lt;code&amp;gt;\(\1 1) (\1 (1 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|4|| &amp;lt;pre&amp;gt;&lt;br /&gt;
\B (B (1 B))&lt;br /&gt;
  where:&lt;br /&gt;
    B = (A (A (1 A)))&lt;br /&gt;
    A = (1 (\1 (1 (2 1))))&lt;br /&gt;
&amp;lt;/pre&amp;gt;||John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|30&lt;br /&gt;
|= 160&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (1 2))&amp;lt;/code&amp;gt; and&lt;br /&gt;
&amp;lt;code&amp;gt;(\1 (1 1)) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|7&lt;br /&gt;
5&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
\\2 B A (1 (2 B A))&lt;br /&gt;
  where:&lt;br /&gt;
    B = (\\2 A (1 (2 A)))&lt;br /&gt;
    A = (\\2 (1 2))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|31&lt;br /&gt;
|= 267&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
\\2 A (2 A (C (2 A)))&lt;br /&gt;
  where:&lt;br /&gt;
    C = (2 A (2 A (1 B (2 A))))&lt;br /&gt;
    B = (\3 A (3 A (1 (3 A))))&lt;br /&gt;
    A = (\\2 (2 (1 2)))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|32&lt;br /&gt;
|= 298&lt;br /&gt;
|&amp;lt;code&amp;gt;\(\1 1) (\1 (1 (2 (\2))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|33&lt;br /&gt;
|= 1812&lt;br /&gt;
|&amp;lt;code&amp;gt;\(\1 1) (\1 (1 (1 (2 1))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;pre&amp;gt;&lt;br /&gt;
\C (C (C (1 C)))&lt;br /&gt;
  where:&lt;br /&gt;
    C = (B (B (B (1 B)))&lt;br /&gt;
    B = (A (A (A (1 A)))&lt;br /&gt;
    A = (1 (\1 (1 (1 (2 1)))))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|34 || &amp;lt;math&amp;gt;= \ 5 \left(2^{2^{2^2}}\right) + 6 = 327\,686&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt; and&lt;br /&gt;
&amp;lt;code&amp;gt;(\1 (1 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;C(2^{2^{2^2}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|35 || &amp;lt;math&amp;gt;= 5 \left(3^{3^3}\right) + 6 &amp;gt; 3.8 \times 10^{13}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt; &lt;br /&gt;
| || &amp;lt;math&amp;gt;C(3^{3^3})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|36 || &amp;lt;math&amp;gt;= 5 \left(2^{2^{2^3}}\right) + 6 &amp;gt; 5.7 \times 10^{77}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\2 (2 1))))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;C(2^{2^{2^3}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|37 || &amp;lt;math&amp;gt; = BB\lambda(35)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;code&amp;gt;\(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;\lambda x. C(3^{3^3})&amp;lt;/math&amp;gt;||mxdys, tromp, dyuan, sligocki&lt;br /&gt;
|-&lt;br /&gt;
|38 || &amp;lt;math&amp;gt;\ge 5 \left(2^{2^{2^{2^2}}}\right) + 6 &amp;gt; 10^{10^4}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt; and&lt;br /&gt;
&amp;lt;code&amp;gt;(\1 (1 1) 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;C(2^{2^{2^{2^2}}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|39 || &amp;lt;math&amp;gt;\ge 5 \left(3^{3^{3^3}}\right) + 6 &amp;gt; 10^{10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt; &lt;br /&gt;
| || &amp;lt;math&amp;gt;C(3^{3^{3^3}})&amp;lt;/math&amp;gt;|| John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|40 || &amp;lt;math&amp;gt; &amp;gt; (2\uparrow\uparrow)^{15} 33 &amp;gt; 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{15} 33&amp;lt;/math&amp;gt;|| mxdys and racheline&lt;br /&gt;
|-&lt;br /&gt;
|41 || &amp;lt;math&amp;gt;\ge 5 \left(3^{3^{85}}\right) + 6 &amp;gt; 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;code&amp;gt;(\1 (\1 1) 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;C(3^{3^{85}})&amp;lt;/math&amp;gt;||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|42 ||&amp;lt;math&amp;gt; \ge BB\lambda(40)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;\(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
| || ||&lt;br /&gt;
|-&lt;br /&gt;
|43 ||&amp;lt;math&amp;gt; &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;(\lambda y.y\;C(2)\;T(n))&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow\uparrow 2 \uparrow\uparrow 8&amp;lt;/math&amp;gt;||mxdys&lt;br /&gt;
|-&lt;br /&gt;
|44 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt; &lt;br /&gt;
| || &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|45 || &amp;lt;math&amp;gt; \ge BB\lambda(43)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;\(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
| || ||&lt;br /&gt;
|-&lt;br /&gt;
|46 || &amp;lt;math&amp;gt; \ge BB\lambda(44)+2&amp;lt;/math&amp;gt;&lt;br /&gt;
|  &amp;lt;code&amp;gt;\(\1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
| || ||&lt;br /&gt;
|-&lt;br /&gt;
|47 || &lt;br /&gt;
|  &lt;br /&gt;
| || ||&lt;br /&gt;
|-&lt;br /&gt;
|48 || &amp;lt;math&amp;gt; &amp;gt; 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 10 \uparrow\uparrow\uparrow 16&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt; &lt;br /&gt;
| || &amp;lt;math&amp;gt;\lambda x.T(k)&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;T(0)=x,\;T(n+1)=T(n)\;C(2)\;T(n)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;k &amp;gt; (2\uparrow\uparrow)^{(2\uparrow\uparrow)^{(2\uparrow\uparrow)^{15} 33 - 1} 33 - 1} 33&amp;lt;/math&amp;gt;||&lt;br /&gt;
|-&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right) &amp;gt; \text{Graham&#039;s number}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&amp;lt;math&amp;gt;C(N) \text{ for } N \approx f_{\omega+1}\left(\frac{2 \uparrow\uparrow 6}{2}\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|63&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega^3}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&amp;lt;math&amp;gt;C(N) \text{ for } N \approx f_{\omega^3}\left(2\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|Patcail &amp;amp; [https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|91&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\varepsilon_0 + 1}\left(3\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 1) (\\1 2 1) (\1 (\2 1 2))) (\\\2 3 (\3 1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|50_ft_lock&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|1850&lt;br /&gt;
|&amp;gt; Loader&#039;s number&lt;br /&gt;
|&amp;lt;code&amp;gt;too large to show&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|[https://codegolf.stackexchange.com/questions/176966/golf-a-number-bigger-than-loaders-number/274634#274634 John Tromp]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Where &amp;lt;math&amp;gt;C(n)&amp;lt;/math&amp;gt; represents the Church numeral &#039;&#039;n&#039;&#039; (&amp;lt;math&amp;gt;\lambda f x. f^n(x)&amp;lt;/math&amp;gt;) written as &amp;lt;code&amp;gt;\\2 (2 ... (2 1)...)&amp;lt;/code&amp;gt; with &#039;&#039;n&#039;&#039; 2s in this text representation.&lt;br /&gt;
== Oracle Busy Beaver ==&lt;br /&gt;
While BBλ grows uncomputably fast, one can define functions that grow much faster.&lt;br /&gt;
&lt;br /&gt;
Let&#039;s define a higher order busy beaver function BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; by providing oracle access to BBλ.&lt;br /&gt;
&lt;br /&gt;
This is done by enriching the set of terms and possible reduction steps considered in the BB definition.&lt;br /&gt;
&lt;br /&gt;
A 1-closed term is a term in de Bruijn notation that is closed with 1 additional lambda in front. Any variable bound to that lambda is a free variable &#039;&#039;&#039;f&#039;&#039;&#039; in the term.&lt;br /&gt;
&lt;br /&gt;
An oracle reduction step reduces &#039;&#039;&#039;f&#039;&#039;&#039; t, where t is a closed normal form of size s, to Church numeral BB(s).&lt;br /&gt;
&lt;br /&gt;
Note that this is almost identical to the oracle steps in Barendregt and Klop&#039;s &amp;quot;Applications of infinitary lambda calculus&amp;quot;, except that they require t itself to be a church numeral. Allowing arbitrary closed t makes oracle steps more widely applicable while aligning with BBλ&#039;s focus on term sizes.&lt;br /&gt;
&lt;br /&gt;
Now let BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; be the maximum beta/oracle normal form size of any 1-closed lambda term of size n, or 0 if no 1-closed term of size n exists. This appears as sequence [[oeis:A385712|A385712]]  in the OEIS.&lt;br /&gt;
&lt;br /&gt;
The following table shows values of BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; up to 22 plus a lower bound for 28, with larger values expressed in terms of function &amp;lt;math&amp;gt;f(n) = 6 + 5 \times BB \lambda(n)&amp;lt;/math&amp;gt;: &lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!n&lt;br /&gt;
!champion&lt;br /&gt;
!BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;1&amp;lt;/code&amp;gt;&lt;br /&gt;
|1&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|&lt;br /&gt;
|0&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;\1&amp;lt;/code&amp;gt;&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;\2&amp;lt;/code&amp;gt;&lt;br /&gt;
|5&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;\\1&amp;lt;/code&amp;gt;&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\\2&amp;lt;/code&amp;gt;&lt;br /&gt;
|7&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(4) = 26&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;\\2&amp;lt;/code&amp;gt;&lt;br /&gt;
|9&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(6) = 36&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\2)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(7) = 41&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(4) = 266&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\2)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f(9) = 51&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\\1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(6) = f(36) = 25 \times 2^{2^{2^{3}}}+36 &amp;gt; 2.85 \times 10^{78}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{2}(7) = f(41) \geq 25 \times 3^{3^{85}}+36 &amp;gt; 10^{10^{40}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (1 (\1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{3}(4) = f(266)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\\\2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^2(9) = f(51)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\1) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^4(4) &amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|19&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (1 (\\2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^3(7)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\1) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^6(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\\2) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^7(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (1 (\1)) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;f^{52}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;1 (\1) 1 (\1) 1 (\1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt;\ge f^{BB \lambda(f^3(4))}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
We can generalize BBλ&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; to BBλ&amp;lt;sub&amp;gt;α&amp;lt;/sub&amp;gt; for ordinals α by using oracle function BBλ&amp;lt;sub&amp;gt;α-1&amp;lt;/sub&amp;gt; for successor ordinal a, and oracle function (\n -&amp;gt; BBλ&amp;lt;sub&amp;gt;α[n]&amp;lt;/sub&amp;gt;(n)) for limit ordinal α, assuming well-defined fundamental sequences up to α. Because of limited oracle inputs, all oracle busy beavers have identical values up to n=11.&lt;br /&gt;
&lt;br /&gt;
== De Bruijn ==&lt;br /&gt;
We can use De Bruijn index instead of binary to evaluate lambda calculus size.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!n&lt;br /&gt;
!Value&lt;br /&gt;
!Champion&lt;br /&gt;
!Discovered By&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|≥ 7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|≥ 16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[User:Azerty|Azerty]] &amp;amp; John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|≥ 68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|John Tromp &amp;amp;  Bertram Felgenhauer&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys and racheline&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|mxdys&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;math&amp;gt;&amp;gt; f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|[https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^3}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|Patcail &amp;amp; [https://github.com/tromp/AIT/blob/master/fast_growing_and_conjectures/melo.lam Gustavo Melo]&lt;br /&gt;
|-&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\epsilon_0+1}(3)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 1) (\\1 2 1) (\1 (\2 1 2))) (\\\2 3 (\3 1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|50_ft_lock&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* https://oeis.org/A333479&lt;br /&gt;
* [https://tromp.github.io/blog/2023/11/24/largest-number The largest number representable in 64 bits]. 24 Nov 2023. John Tromp.&lt;br /&gt;
* [https://tromp.github.io/cl/Binary_lambda_calculus.html Binary Lambda Calculus]. John Tromp.&lt;br /&gt;
* https://github.com/tromp/AIT/tree/master/BB&lt;br /&gt;
[[category:Functions]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=1RB0LB2LA_1LA0RC0LB_2RC2RB0LC&amp;diff=5954</id>
		<title>1RB0LB2LA 1LA0RC0LB 2RC2RB0LC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=1RB0LB2LA_1LA0RC0LB_2RC2RB0LC&amp;diff=5954"/>
		<updated>2026-01-01T13:04:05Z</updated>

		<summary type="html">&lt;p&gt;Azerty: Created a page so it&amp;#039;s easier to find the article (by nickdrozd) about BBB(3,3).&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TM|1RB1LF_1LB1LC_1RD0LE_---0RB_0RC0LA_1RC0RF}} is the current BBB(3,3) champion. It runs for &amp;lt;math&amp;gt;10 \uparrow \uparrow 6&amp;lt;/math&amp;gt; steps before quasihalting.&lt;br /&gt;
&lt;br /&gt;
== Source ==&lt;br /&gt;
https://nickdrozd.github.io/2025/03/24/bbb-3-3.html&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5941</id>
		<title>User:Azerty/Busy Beaver Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5941"/>
		<updated>2025-12-31T12:54:38Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* Restricted move and write per state */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of Busy Beaver functions for Turing machines and other simple Turing-complete systems and their current lower bounds.&lt;br /&gt;
&lt;br /&gt;
I only add functions that meet the requirements below:&lt;br /&gt;
&lt;br /&gt;
* The function must grow uncomputably fast, like BB(n).&lt;br /&gt;
* The function must not have similar champions to other function, like Σ(n).&lt;br /&gt;
* The function must not be arbitrary complex.&lt;br /&gt;
&lt;br /&gt;
== Turing machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver Functions|Classic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2)|BB(2,2)]]&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,3,1)&lt;br /&gt;
|14&lt;br /&gt;
|{{TM|0RB---1LB_1LA2RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3)|BB(3,2)]]&lt;br /&gt;
|21&lt;br /&gt;
|{{TM|1RB---_1LB0RC_1LC1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,3)]]&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(4,2,1)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB---_1LB0LC_1RD1LD_0RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,2)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB---0RC_2LC------_2RC0LC1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4)|BB(4,2)]]&lt;br /&gt;
|107&lt;br /&gt;
|{{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,4,1)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(5,2,1)&lt;br /&gt;
|242&lt;br /&gt;
|{{TM|1RB0LA_1RC0LA_1LD0RE_---1LA_---0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,4)]]&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,1)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA_1LC1LA2RB_---1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(5)|BB(5,2)]]&lt;br /&gt;
|47,176,870&lt;br /&gt;
|{{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(6,2,1)&lt;br /&gt;
|17,397,627,083&lt;br /&gt;
|{{TM|1RB0LA_1RC1RD_1LB1RA_---0RE_1LF0RC_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;1.191 \times 10^{17}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,5)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,6)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10^{10^{115}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3RB5RA1LB5LA2LB_2LA2RA4RB---3LB2LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(6)|BB(6,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_1RC---_1LD0RF_1RA0LE_0LD1RC_1RA0RE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10^{28}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(7)|BB(7,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{11} 10 \uparrow^{10} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LC1LF_1RD0LB_1RA1LE_---0LC_1RG1LD_0RG0RF|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,4)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(9,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega(10 \uparrow^{7} 10 \uparrow^{7} 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_1LB0LH|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,5)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(10,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(11,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(12,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(15,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(16,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,7)]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Instruction-Limited Busy Beaver|Instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(5)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(6)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(7)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(9)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(29)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(31)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turing machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB---2RB_2LB2RA0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2,1)&lt;br /&gt;
|11&lt;br /&gt;
|{{TM|1RB---_0RC0RB_1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|0RB0LB_0RC1RC_1LA0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB0RA0RB_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4,1)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB3RA0RB0RA_2LA2RB1LB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4)&lt;br /&gt;
|49&lt;br /&gt;
|{{TM|1RB2RA2RB2LA_2LB0RA3RB0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2,1)&lt;br /&gt;
|55&lt;br /&gt;
|{{TM|0RB---_1RC0LD_1RD1RB_1LB0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2)&lt;br /&gt;
|63&lt;br /&gt;
|{{TM|0RB0LD_0RC1LC_0RD1LA_1LB1RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(5,2,1)&lt;br /&gt;
|70&lt;br /&gt;
|{{TM|0RB---_0RC1LC_1RD0RE_1RE1RD_1LE1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3,2)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3)&lt;br /&gt;
|202&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,3,2)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turing machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBti(3)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(4)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(5)&lt;br /&gt;
|18&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(6)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB------_1RC------_1RD------_2LD2RD0RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(7)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(8)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function|Blanking]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2,1)&lt;br /&gt;
|16&lt;br /&gt;
|{{TM|1RB---_1LC0LC_1RC0LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3,1)&lt;br /&gt;
|22&lt;br /&gt;
|{{TM|1RB2LB---_2LA0RB1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2)&lt;br /&gt;
|34&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2,1)&lt;br /&gt;
|169&lt;br /&gt;
|{{TM|1RB---_0RC0LA_1LC1LD_0RB0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,2)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,1)&lt;br /&gt;
|308&lt;br /&gt;
|{{TM|1RB1RC---_1LB1RA2RB_0RB2LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2)&lt;br /&gt;
|32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5,2)&lt;br /&gt;
|32,810,047&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6,2)&lt;br /&gt;
|65,538,549&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function#Instruction-limited Blanking Busy Beaver (BLBi(n))|Blanking instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2)&lt;br /&gt;
|19&lt;br /&gt;
|{{TM|1RB1RA_0RC---_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2,1)&lt;br /&gt;
|32&lt;br /&gt;
|{{TM|1RB---_1LC---_0LD0LC_1RD0RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2,1)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(5)&lt;br /&gt;
|23&lt;br /&gt;
|{{TM|1RB------_0RC------_1LC2LB0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(6)&lt;br /&gt;
|66&lt;br /&gt;
|{{TM|1RB------_1LB0LC---_1RC2RA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(7)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(8)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(9)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBws(2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(3)&lt;br /&gt;
|20&lt;br /&gt;
|{{TM|1RB---_0LC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(4)&lt;br /&gt;
|53&lt;br /&gt;
|{{TM|1RB1LB_1LC1RD_1RA1LA_---0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(5)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move and write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol and go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(4)&lt;br /&gt;
|29&lt;br /&gt;
|{{TM|1RB1RD_0LC0LA_1LC1LA_0RC---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(5)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Reversible Turing Machine|Reversible]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol reversible Turing machine with k+1 instructions transitions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|0RB---_1LA1RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|0RB---_0LC1RA_1RB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(4,2)&lt;br /&gt;
|48&lt;br /&gt;
|{{TM|1RB0LD_0LC0RB_1LA1LD_1LC---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(5,2)&lt;br /&gt;
|388&lt;br /&gt;
|{{TM|1RB0RD_1RC0RB_1RD---_1LE1LA_0LE0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(6,2)&lt;br /&gt;
|537,556&lt;br /&gt;
|{{TM|1RB1LD_1LC1RE_0LD0LC_0RE0RF_0RA---_1RF1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(7,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{19}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LD_0LC0LD_1LC1LA_0LA1RE_0RF0RE_0RG1RF_0RB---|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Maximum Consecutive Ones Function|Consecutive ones]] ===&lt;br /&gt;
Maximum number of consecutive 1s left on the tape by a n-state, m-symbol Turing machine with k+1 undefined instructions after halting. TMs must leave all their 1s consecutively.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2,1)&lt;br /&gt;
|2&lt;br /&gt;
|{{TM|1RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LC_1RC---_1LA0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,3)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB0LA_1RC1LB_1LB1RD_---0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,3)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB1RA---_1LC1LC2LA_2RA1LB1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(5,2)&lt;br /&gt;
|165&lt;br /&gt;
|{{TM|1RB1LA_1RC1LE_1RD1RE_0LA1RC_---0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler preperiod|Preperiodic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before turning into a translated cycler.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB---_1LB0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0LB_1LA0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(3,2)&lt;br /&gt;
|101&lt;br /&gt;
|{{TM|1RB1LB_0RC0LA_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(4,2)&lt;br /&gt;
|119,120,230,102&lt;br /&gt;
|{{TM|1RB1LC_0LA1RD_0RB0LC_1LA0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;2 \times 10^{23}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA1RA1LB_0LB2RB3RB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|&amp;lt;math&amp;gt;5.418 \times 10^{51}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{14,006}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_0LC0LB_0LD1LC_1RD1RA_0RC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0LB2LA_1LA0RC0LB_2RC2RB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler period|Periodic]] ===&lt;br /&gt;
Maximum translated cycler period done by a n-state, m-symbol Turing Machine with k undefined instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0RB_1LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,2)&lt;br /&gt;
|92&lt;br /&gt;
|{{TM|1RB0LA_0RC1LA_1LC0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|1,195&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,4)&lt;br /&gt;
|33,209,131&lt;br /&gt;
|{{TM|1RB0RA3LB1RB_2LA0LB1RA2RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(4,2)&lt;br /&gt;
|212,081,736&lt;br /&gt;
|{{TM|1RB0LA_0RC1RD_1LD0RB_1LA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|8,468,569,863&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Turing machine variations ==&lt;br /&gt;
&lt;br /&gt;
=== [[Terminating Turmite|Turmite]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k+1 undefined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2,1)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PC0PB_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0PC_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2,1)&lt;br /&gt;
|139&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PD0TC_---0TA_1TA1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3,1)&lt;br /&gt;
|683&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA---_1PC1PB0TC_2PA1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2)&lt;br /&gt;
|758&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_0PD1PB_1PA1TA_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,4)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite instructions ===&lt;br /&gt;
Maximum number of steps done by a Turmite machine with n defined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTi(2)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(3)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(4)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(5)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(7)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(8)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turmite machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_1TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2TB---_1TA0PB0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1PC1TC_1TB0PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB0PC_1PC0TA_1TB1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4,1)&lt;br /&gt;
|44&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PB0PB---_2TB2TA3TA1TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2,1)&lt;br /&gt;
|48&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PC_0TB1TD_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,2)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,1)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---1TC_2PC1TA0PB_2TB2TC2PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3)&lt;br /&gt;
|134&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PC2TB_1TC0TA0PB_2TC1TA2TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2)&lt;br /&gt;
|166&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_0PC0TA_0PD0PB_1TB1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turmite machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTti(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(4)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_1TC1PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(5)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_0PD---_1TC0TD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(6)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(7)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(8)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2,1)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PC0TC_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2,1)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2)&lt;br /&gt;
|267&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TD_1PC0PA_0PA0TD_1PD0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,4)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,3)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(3)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(4)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(6)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(8)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(9)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol turmite machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2,1)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PC_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PC0PA_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2,1)&lt;br /&gt;
|30&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_1PD0PC_0PA---_0PB---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(3)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(4)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(5)&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TA_2PB0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(6)&lt;br /&gt;
|36&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TC_2PB0PA---_0TB------&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(7)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Lambda calculus ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for SKI calculus#SK calculus|SK calculus]] ===&lt;br /&gt;
Maximum normal form size of any closed SK term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;SSSS&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(6)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(7)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(S(SKS))S&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BCKW calculus ===&lt;br /&gt;
Maximum normal form size of any closed BCKW term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;BBB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(4)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(5)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BBB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(6)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(7)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BBB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(WB(BB)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for lambda calculus#De Bruijn|De Bruijn]] ===&lt;br /&gt;
Maximum normal form size of any closed lambda term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBL(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(9)&lt;br /&gt;
|68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(10)&lt;br /&gt;
|&amp;lt;math&amp;gt;7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(12)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(13)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(15)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(18)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^3}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(26)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\epsilon_0+1}(3)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 1) (\\1 2 1) (\1 (\2 1 2))) (\\\2 3 (\3 1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tag system ==&lt;br /&gt;
&lt;br /&gt;
=== 2-tag system ===&lt;br /&gt;
Maximum number of transformations performed with a 2-tag system of size n. Its size if the sum of the number of letters and the number of different letters.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(4)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(5)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(6)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(7)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(8)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(9)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(11)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(12)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bc, a, aaa&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Cyclic tag ===&lt;br /&gt;
Maximum number of transformations that can be done with a cyclic tag system of size n. Its size if the sum of the number of bits and the number of instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(6)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(7)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(9)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(10)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 0000&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tree rewriting ===&lt;br /&gt;
Maximum number of transformations that can be done with a tree rewriting system of size n. Its size if the number of brackets.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: () P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(4)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(5)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(8)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(14)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()(()) P: (()) &amp;gt; ((())), ()()() &amp;gt; _, () &amp;gt; ()()&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(23)&lt;br /&gt;
|672&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: ()() &amp;gt; (()())(), ()() &amp;gt; ()()(()), () &amp;gt; (()), (((()))) &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(38)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 10 \uparrow 54&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: (())(()()) P: (()()) &amp;gt; (()())(()), (()()) &amp;gt; (()())(()), ()(()) &amp;gt; (())((())), ((())) &amp;gt; ((()))()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(45)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 130&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((())) P: ((())) &amp;gt; ((()))(()()), (()()) &amp;gt; (()())(()), (()) &amp;gt; (())(()()()), (()()()) &amp;gt; (()()())()(), ()()() &amp;gt; _, () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(69)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((()())) P: ((()())) &amp;gt; ((()()))((())), ((())) &amp;gt; ((()))(()()()), ((())) &amp;gt; ((()))(()()()), (()()()) &amp;gt; (()()())(()()), (()()) &amp;gt; (()())(())(()), (()) &amp;gt; (())()()()()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Fractran ==&lt;br /&gt;
&lt;br /&gt;
=== [[Fractran]] ===&lt;br /&gt;
Maximum number of instructions applied by a fractran program of size n before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBf(10)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;[729/2, 1/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(11)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;[27/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(12)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(13)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(14)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;[243/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(15)&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 25/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(16)&lt;br /&gt;
|53&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 125/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(17)&lt;br /&gt;
|107&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 40/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(18)&lt;br /&gt;
|211&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 80/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(19)&lt;br /&gt;
|370&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 160/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(20)&lt;br /&gt;
|746&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 22/3, 6/77, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(21)&lt;br /&gt;
|31,957,632&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 4/3, 27/14, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.146 \times 10^{62}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/12, 9/10, 14/3, 11/2, 5/7, 3/11]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Brainfuck ==&lt;br /&gt;
&lt;br /&gt;
=== Brainfuck ===&lt;br /&gt;
Maximum number of instructions read by a brainfuck program with n instructions (uses &amp;lt;code&amp;gt;+-&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols). Cells size are unbounded and can have negative values.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;++++++&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[-]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(8)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;+++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(9)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(10)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;+++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(11)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;+[[&amp;gt;]-&amp;lt;+&amp;lt;+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Boolfuck ===&lt;br /&gt;
Maximum number of instructions read by a boolfuck program with n instructions (uses &amp;lt;code&amp;gt;*&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(10)&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(11)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(12)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(13)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(14)&lt;br /&gt;
|58&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+[&amp;lt;+&amp;lt;+[&amp;gt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(17)&lt;br /&gt;
|109&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(19)&lt;br /&gt;
|112&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(20)&lt;br /&gt;
|180&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(22)&lt;br /&gt;
|183&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(23)&lt;br /&gt;
|269&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BitChanger ===&lt;br /&gt;
Maximum number of instructions read by a bitchanger program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;}[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(9)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(10)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(11)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(12)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitter ===&lt;br /&gt;
Maximum number of instructions read by a bitter program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(11)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(12)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Minsky machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Register machine|Minsky machines]] ===&lt;br /&gt;
Maximum number of steps done by a Minsky machine before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|MBB(1)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;0+*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(2)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(3)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0+C_0-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(4)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1+C_0-BD_1-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;0-DB_0+C_1-ED_1+A_1-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(6)&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1-FC_1+D_0-CE_0+A_1-A*&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5940</id>
		<title>User:Azerty/Busy Beaver Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5940"/>
		<updated>2025-12-31T12:54:26Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* Restricted write per state */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of Busy Beaver functions for Turing machines and other simple Turing-complete systems and their current lower bounds.&lt;br /&gt;
&lt;br /&gt;
I only add functions that meet the requirements below:&lt;br /&gt;
&lt;br /&gt;
* The function must grow uncomputably fast, like BB(n).&lt;br /&gt;
* The function must not have similar champions to other function, like Σ(n).&lt;br /&gt;
* The function must not be arbitrary complex.&lt;br /&gt;
&lt;br /&gt;
== Turing machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver Functions|Classic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2)|BB(2,2)]]&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,3,1)&lt;br /&gt;
|14&lt;br /&gt;
|{{TM|0RB---1LB_1LA2RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3)|BB(3,2)]]&lt;br /&gt;
|21&lt;br /&gt;
|{{TM|1RB---_1LB0RC_1LC1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,3)]]&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(4,2,1)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB---_1LB0LC_1RD1LD_0RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,2)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB---0RC_2LC------_2RC0LC1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4)|BB(4,2)]]&lt;br /&gt;
|107&lt;br /&gt;
|{{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,4,1)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(5,2,1)&lt;br /&gt;
|242&lt;br /&gt;
|{{TM|1RB0LA_1RC0LA_1LD0RE_---1LA_---0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,4)]]&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,1)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA_1LC1LA2RB_---1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(5)|BB(5,2)]]&lt;br /&gt;
|47,176,870&lt;br /&gt;
|{{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(6,2,1)&lt;br /&gt;
|17,397,627,083&lt;br /&gt;
|{{TM|1RB0LA_1RC1RD_1LB1RA_---0RE_1LF0RC_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;1.191 \times 10^{17}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,5)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,6)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10^{10^{115}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3RB5RA1LB5LA2LB_2LA2RA4RB---3LB2LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(6)|BB(6,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_1RC---_1LD0RF_1RA0LE_0LD1RC_1RA0RE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10^{28}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(7)|BB(7,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{11} 10 \uparrow^{10} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LC1LF_1RD0LB_1RA1LE_---0LC_1RG1LD_0RG0RF|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,4)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(9,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega(10 \uparrow^{7} 10 \uparrow^{7} 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_1LB0LH|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,5)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(10,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(11,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(12,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(15,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(16,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,7)]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Instruction-Limited Busy Beaver|Instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(5)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(6)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(7)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(9)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(29)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(31)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turing machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB---2RB_2LB2RA0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2,1)&lt;br /&gt;
|11&lt;br /&gt;
|{{TM|1RB---_0RC0RB_1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|0RB0LB_0RC1RC_1LA0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB0RA0RB_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4,1)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB3RA0RB0RA_2LA2RB1LB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4)&lt;br /&gt;
|49&lt;br /&gt;
|{{TM|1RB2RA2RB2LA_2LB0RA3RB0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2,1)&lt;br /&gt;
|55&lt;br /&gt;
|{{TM|0RB---_1RC0LD_1RD1RB_1LB0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2)&lt;br /&gt;
|63&lt;br /&gt;
|{{TM|0RB0LD_0RC1LC_0RD1LA_1LB1RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(5,2,1)&lt;br /&gt;
|70&lt;br /&gt;
|{{TM|0RB---_0RC1LC_1RD0RE_1RE1RD_1LE1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3,2)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3)&lt;br /&gt;
|202&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,3,2)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turing machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBti(3)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(4)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(5)&lt;br /&gt;
|18&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(6)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB------_1RC------_1RD------_2LD2RD0RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(7)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(8)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function|Blanking]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2,1)&lt;br /&gt;
|16&lt;br /&gt;
|{{TM|1RB---_1LC0LC_1RC0LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3,1)&lt;br /&gt;
|22&lt;br /&gt;
|{{TM|1RB2LB---_2LA0RB1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2)&lt;br /&gt;
|34&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2,1)&lt;br /&gt;
|169&lt;br /&gt;
|{{TM|1RB---_0RC0LA_1LC1LD_0RB0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,2)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,1)&lt;br /&gt;
|308&lt;br /&gt;
|{{TM|1RB1RC---_1LB1RA2RB_0RB2LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2)&lt;br /&gt;
|32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5,2)&lt;br /&gt;
|32,810,047&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6,2)&lt;br /&gt;
|65,538,549&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function#Instruction-limited Blanking Busy Beaver (BLBi(n))|Blanking instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2)&lt;br /&gt;
|19&lt;br /&gt;
|{{TM|1RB1RA_0RC---_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2,1)&lt;br /&gt;
|32&lt;br /&gt;
|{{TM|1RB---_1LC---_0LD0LC_1RD0RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2,1)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(5)&lt;br /&gt;
|23&lt;br /&gt;
|{{TM|1RB------_0RC------_1LC2LB0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(6)&lt;br /&gt;
|66&lt;br /&gt;
|{{TM|1RB------_1LB0LC---_1RC2RA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(7)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(8)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(9)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBws(2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(3)&lt;br /&gt;
|20&lt;br /&gt;
|{{TM|1RB---_0LC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(4)&lt;br /&gt;
|53&lt;br /&gt;
|{{TM|1RB1LB_1LC1RD_1RA1LA_---0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(5)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move and write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol and go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(4,2)&lt;br /&gt;
|29&lt;br /&gt;
|{{TM|1RB1RD_0LC0LA_1LC1LA_0RC---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Reversible Turing Machine|Reversible]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol reversible Turing machine with k+1 instructions transitions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|0RB---_1LA1RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|0RB---_0LC1RA_1RB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(4,2)&lt;br /&gt;
|48&lt;br /&gt;
|{{TM|1RB0LD_0LC0RB_1LA1LD_1LC---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(5,2)&lt;br /&gt;
|388&lt;br /&gt;
|{{TM|1RB0RD_1RC0RB_1RD---_1LE1LA_0LE0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(6,2)&lt;br /&gt;
|537,556&lt;br /&gt;
|{{TM|1RB1LD_1LC1RE_0LD0LC_0RE0RF_0RA---_1RF1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(7,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{19}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LD_0LC0LD_1LC1LA_0LA1RE_0RF0RE_0RG1RF_0RB---|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Maximum Consecutive Ones Function|Consecutive ones]] ===&lt;br /&gt;
Maximum number of consecutive 1s left on the tape by a n-state, m-symbol Turing machine with k+1 undefined instructions after halting. TMs must leave all their 1s consecutively.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2,1)&lt;br /&gt;
|2&lt;br /&gt;
|{{TM|1RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LC_1RC---_1LA0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,3)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB0LA_1RC1LB_1LB1RD_---0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,3)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB1RA---_1LC1LC2LA_2RA1LB1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(5,2)&lt;br /&gt;
|165&lt;br /&gt;
|{{TM|1RB1LA_1RC1LE_1RD1RE_0LA1RC_---0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler preperiod|Preperiodic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before turning into a translated cycler.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB---_1LB0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0LB_1LA0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(3,2)&lt;br /&gt;
|101&lt;br /&gt;
|{{TM|1RB1LB_0RC0LA_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(4,2)&lt;br /&gt;
|119,120,230,102&lt;br /&gt;
|{{TM|1RB1LC_0LA1RD_0RB0LC_1LA0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;2 \times 10^{23}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA1RA1LB_0LB2RB3RB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|&amp;lt;math&amp;gt;5.418 \times 10^{51}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{14,006}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_0LC0LB_0LD1LC_1RD1RA_0RC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0LB2LA_1LA0RC0LB_2RC2RB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler period|Periodic]] ===&lt;br /&gt;
Maximum translated cycler period done by a n-state, m-symbol Turing Machine with k undefined instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0RB_1LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,2)&lt;br /&gt;
|92&lt;br /&gt;
|{{TM|1RB0LA_0RC1LA_1LC0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|1,195&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,4)&lt;br /&gt;
|33,209,131&lt;br /&gt;
|{{TM|1RB0RA3LB1RB_2LA0LB1RA2RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(4,2)&lt;br /&gt;
|212,081,736&lt;br /&gt;
|{{TM|1RB0LA_0RC1RD_1LD0RB_1LA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|8,468,569,863&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Turing machine variations ==&lt;br /&gt;
&lt;br /&gt;
=== [[Terminating Turmite|Turmite]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k+1 undefined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2,1)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PC0PB_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0PC_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2,1)&lt;br /&gt;
|139&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PD0TC_---0TA_1TA1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3,1)&lt;br /&gt;
|683&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA---_1PC1PB0TC_2PA1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2)&lt;br /&gt;
|758&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_0PD1PB_1PA1TA_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,4)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite instructions ===&lt;br /&gt;
Maximum number of steps done by a Turmite machine with n defined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTi(2)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(3)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(4)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(5)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(7)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(8)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turmite machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_1TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2TB---_1TA0PB0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1PC1TC_1TB0PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB0PC_1PC0TA_1TB1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4,1)&lt;br /&gt;
|44&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PB0PB---_2TB2TA3TA1TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2,1)&lt;br /&gt;
|48&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PC_0TB1TD_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,2)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,1)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---1TC_2PC1TA0PB_2TB2TC2PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3)&lt;br /&gt;
|134&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PC2TB_1TC0TA0PB_2TC1TA2TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2)&lt;br /&gt;
|166&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_0PC0TA_0PD0PB_1TB1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turmite machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTti(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(4)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_1TC1PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(5)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_0PD---_1TC0TD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(6)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(7)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(8)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2,1)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PC0TC_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2,1)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2)&lt;br /&gt;
|267&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TD_1PC0PA_0PA0TD_1PD0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,4)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,3)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(3)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(4)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(6)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(8)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(9)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol turmite machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2,1)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PC_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PC0PA_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2,1)&lt;br /&gt;
|30&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_1PD0PC_0PA---_0PB---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(3)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(4)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(5)&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TA_2PB0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(6)&lt;br /&gt;
|36&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TC_2PB0PA---_0TB------&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(7)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Lambda calculus ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for SKI calculus#SK calculus|SK calculus]] ===&lt;br /&gt;
Maximum normal form size of any closed SK term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;SSSS&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(6)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(7)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(S(SKS))S&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BCKW calculus ===&lt;br /&gt;
Maximum normal form size of any closed BCKW term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;BBB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(4)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(5)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BBB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(6)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(7)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BBB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(WB(BB)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for lambda calculus#De Bruijn|De Bruijn]] ===&lt;br /&gt;
Maximum normal form size of any closed lambda term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBL(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(9)&lt;br /&gt;
|68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(10)&lt;br /&gt;
|&amp;lt;math&amp;gt;7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(12)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(13)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(15)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(18)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^3}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(26)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\epsilon_0+1}(3)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 1) (\\1 2 1) (\1 (\2 1 2))) (\\\2 3 (\3 1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tag system ==&lt;br /&gt;
&lt;br /&gt;
=== 2-tag system ===&lt;br /&gt;
Maximum number of transformations performed with a 2-tag system of size n. Its size if the sum of the number of letters and the number of different letters.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(4)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(5)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(6)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(7)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(8)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(9)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(11)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(12)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bc, a, aaa&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Cyclic tag ===&lt;br /&gt;
Maximum number of transformations that can be done with a cyclic tag system of size n. Its size if the sum of the number of bits and the number of instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(6)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(7)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(9)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(10)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 0000&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tree rewriting ===&lt;br /&gt;
Maximum number of transformations that can be done with a tree rewriting system of size n. Its size if the number of brackets.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: () P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(4)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(5)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(8)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(14)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()(()) P: (()) &amp;gt; ((())), ()()() &amp;gt; _, () &amp;gt; ()()&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(23)&lt;br /&gt;
|672&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: ()() &amp;gt; (()())(), ()() &amp;gt; ()()(()), () &amp;gt; (()), (((()))) &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(38)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 10 \uparrow 54&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: (())(()()) P: (()()) &amp;gt; (()())(()), (()()) &amp;gt; (()())(()), ()(()) &amp;gt; (())((())), ((())) &amp;gt; ((()))()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(45)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 130&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((())) P: ((())) &amp;gt; ((()))(()()), (()()) &amp;gt; (()())(()), (()) &amp;gt; (())(()()()), (()()()) &amp;gt; (()()())()(), ()()() &amp;gt; _, () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(69)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((()())) P: ((()())) &amp;gt; ((()()))((())), ((())) &amp;gt; ((()))(()()()), ((())) &amp;gt; ((()))(()()()), (()()()) &amp;gt; (()()())(()()), (()()) &amp;gt; (()())(())(()), (()) &amp;gt; (())()()()()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Fractran ==&lt;br /&gt;
&lt;br /&gt;
=== [[Fractran]] ===&lt;br /&gt;
Maximum number of instructions applied by a fractran program of size n before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBf(10)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;[729/2, 1/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(11)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;[27/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(12)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(13)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(14)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;[243/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(15)&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 25/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(16)&lt;br /&gt;
|53&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 125/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(17)&lt;br /&gt;
|107&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 40/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(18)&lt;br /&gt;
|211&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 80/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(19)&lt;br /&gt;
|370&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 160/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(20)&lt;br /&gt;
|746&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 22/3, 6/77, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(21)&lt;br /&gt;
|31,957,632&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 4/3, 27/14, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.146 \times 10^{62}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/12, 9/10, 14/3, 11/2, 5/7, 3/11]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Brainfuck ==&lt;br /&gt;
&lt;br /&gt;
=== Brainfuck ===&lt;br /&gt;
Maximum number of instructions read by a brainfuck program with n instructions (uses &amp;lt;code&amp;gt;+-&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols). Cells size are unbounded and can have negative values.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;++++++&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[-]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(8)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;+++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(9)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(10)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;+++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(11)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;+[[&amp;gt;]-&amp;lt;+&amp;lt;+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Boolfuck ===&lt;br /&gt;
Maximum number of instructions read by a boolfuck program with n instructions (uses &amp;lt;code&amp;gt;*&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(10)&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(11)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(12)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(13)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(14)&lt;br /&gt;
|58&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+[&amp;lt;+&amp;lt;+[&amp;gt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(17)&lt;br /&gt;
|109&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(19)&lt;br /&gt;
|112&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(20)&lt;br /&gt;
|180&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(22)&lt;br /&gt;
|183&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(23)&lt;br /&gt;
|269&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BitChanger ===&lt;br /&gt;
Maximum number of instructions read by a bitchanger program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;}[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(9)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(10)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(11)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(12)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitter ===&lt;br /&gt;
Maximum number of instructions read by a bitter program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(11)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(12)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Minsky machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Register machine|Minsky machines]] ===&lt;br /&gt;
Maximum number of steps done by a Minsky machine before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|MBB(1)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;0+*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(2)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(3)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0+C_0-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(4)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1+C_0-BD_1-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;0-DB_0+C_1-ED_1+A_1-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(6)&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1-FC_1+D_0-CE_0+A_1-A*&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5939</id>
		<title>User:Azerty/Busy Beaver Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5939"/>
		<updated>2025-12-31T12:31:19Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* Turmite semi-infinite tape */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of Busy Beaver functions for Turing machines and other simple Turing-complete systems and their current lower bounds.&lt;br /&gt;
&lt;br /&gt;
I only add functions that meet the requirements below:&lt;br /&gt;
&lt;br /&gt;
* The function must grow uncomputably fast, like BB(n).&lt;br /&gt;
* The function must not have similar champions to other function, like Σ(n).&lt;br /&gt;
* The function must not be arbitrary complex.&lt;br /&gt;
&lt;br /&gt;
== Turing machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver Functions|Classic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2)|BB(2,2)]]&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,3,1)&lt;br /&gt;
|14&lt;br /&gt;
|{{TM|0RB---1LB_1LA2RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3)|BB(3,2)]]&lt;br /&gt;
|21&lt;br /&gt;
|{{TM|1RB---_1LB0RC_1LC1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,3)]]&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(4,2,1)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB---_1LB0LC_1RD1LD_0RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,2)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB---0RC_2LC------_2RC0LC1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4)|BB(4,2)]]&lt;br /&gt;
|107&lt;br /&gt;
|{{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,4,1)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(5,2,1)&lt;br /&gt;
|242&lt;br /&gt;
|{{TM|1RB0LA_1RC0LA_1LD0RE_---1LA_---0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,4)]]&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,1)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA_1LC1LA2RB_---1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(5)|BB(5,2)]]&lt;br /&gt;
|47,176,870&lt;br /&gt;
|{{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(6,2,1)&lt;br /&gt;
|17,397,627,083&lt;br /&gt;
|{{TM|1RB0LA_1RC1RD_1LB1RA_---0RE_1LF0RC_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;1.191 \times 10^{17}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,5)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,6)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10^{10^{115}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3RB5RA1LB5LA2LB_2LA2RA4RB---3LB2LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(6)|BB(6,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_1RC---_1LD0RF_1RA0LE_0LD1RC_1RA0RE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10^{28}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(7)|BB(7,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{11} 10 \uparrow^{10} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LC1LF_1RD0LB_1RA1LE_---0LC_1RG1LD_0RG0RF|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,4)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(9,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega(10 \uparrow^{7} 10 \uparrow^{7} 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_1LB0LH|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,5)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(10,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(11,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(12,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(15,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(16,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,7)]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Instruction-Limited Busy Beaver|Instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(5)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(6)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(7)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(9)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(29)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(31)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turing machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB---2RB_2LB2RA0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2,1)&lt;br /&gt;
|11&lt;br /&gt;
|{{TM|1RB---_0RC0RB_1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|0RB0LB_0RC1RC_1LA0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB0RA0RB_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4,1)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB3RA0RB0RA_2LA2RB1LB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4)&lt;br /&gt;
|49&lt;br /&gt;
|{{TM|1RB2RA2RB2LA_2LB0RA3RB0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2,1)&lt;br /&gt;
|55&lt;br /&gt;
|{{TM|0RB---_1RC0LD_1RD1RB_1LB0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2)&lt;br /&gt;
|63&lt;br /&gt;
|{{TM|0RB0LD_0RC1LC_0RD1LA_1LB1RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(5,2,1)&lt;br /&gt;
|70&lt;br /&gt;
|{{TM|0RB---_0RC1LC_1RD0RE_1RE1RD_1LE1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3,2)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3)&lt;br /&gt;
|202&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,3,2)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turing machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBti(3)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(4)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(5)&lt;br /&gt;
|18&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(6)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB------_1RC------_1RD------_2LD2RD0RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(7)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(8)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function|Blanking]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2,1)&lt;br /&gt;
|16&lt;br /&gt;
|{{TM|1RB---_1LC0LC_1RC0LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3,1)&lt;br /&gt;
|22&lt;br /&gt;
|{{TM|1RB2LB---_2LA0RB1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2)&lt;br /&gt;
|34&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2,1)&lt;br /&gt;
|169&lt;br /&gt;
|{{TM|1RB---_0RC0LA_1LC1LD_0RB0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,2)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,1)&lt;br /&gt;
|308&lt;br /&gt;
|{{TM|1RB1RC---_1LB1RA2RB_0RB2LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2)&lt;br /&gt;
|32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5,2)&lt;br /&gt;
|32,810,047&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6,2)&lt;br /&gt;
|65,538,549&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function#Instruction-limited Blanking Busy Beaver (BLBi(n))|Blanking instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2)&lt;br /&gt;
|19&lt;br /&gt;
|{{TM|1RB1RA_0RC---_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2,1)&lt;br /&gt;
|32&lt;br /&gt;
|{{TM|1RB---_1LC---_0LD0LC_1RD0RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2,1)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(5)&lt;br /&gt;
|23&lt;br /&gt;
|{{TM|1RB------_0RC------_1LC2LB0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(6)&lt;br /&gt;
|66&lt;br /&gt;
|{{TM|1RB------_1LB0LC---_1RC2RA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(7)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(8)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(9)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBws(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(3,2)&lt;br /&gt;
|20&lt;br /&gt;
|{{TM|1RB---_0LC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(4,2)&lt;br /&gt;
|53&lt;br /&gt;
|{{TM|1RB1LB_1LC1RD_1RA1LA_---0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move and write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol and go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(4,2)&lt;br /&gt;
|29&lt;br /&gt;
|{{TM|1RB1RD_0LC0LA_1LC1LA_0RC---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Reversible Turing Machine|Reversible]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol reversible Turing machine with k+1 instructions transitions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|0RB---_1LA1RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|0RB---_0LC1RA_1RB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(4,2)&lt;br /&gt;
|48&lt;br /&gt;
|{{TM|1RB0LD_0LC0RB_1LA1LD_1LC---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(5,2)&lt;br /&gt;
|388&lt;br /&gt;
|{{TM|1RB0RD_1RC0RB_1RD---_1LE1LA_0LE0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(6,2)&lt;br /&gt;
|537,556&lt;br /&gt;
|{{TM|1RB1LD_1LC1RE_0LD0LC_0RE0RF_0RA---_1RF1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(7,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{19}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LD_0LC0LD_1LC1LA_0LA1RE_0RF0RE_0RG1RF_0RB---|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Maximum Consecutive Ones Function|Consecutive ones]] ===&lt;br /&gt;
Maximum number of consecutive 1s left on the tape by a n-state, m-symbol Turing machine with k+1 undefined instructions after halting. TMs must leave all their 1s consecutively.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2,1)&lt;br /&gt;
|2&lt;br /&gt;
|{{TM|1RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LC_1RC---_1LA0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,3)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB0LA_1RC1LB_1LB1RD_---0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,3)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB1RA---_1LC1LC2LA_2RA1LB1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(5,2)&lt;br /&gt;
|165&lt;br /&gt;
|{{TM|1RB1LA_1RC1LE_1RD1RE_0LA1RC_---0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler preperiod|Preperiodic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before turning into a translated cycler.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB---_1LB0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0LB_1LA0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(3,2)&lt;br /&gt;
|101&lt;br /&gt;
|{{TM|1RB1LB_0RC0LA_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(4,2)&lt;br /&gt;
|119,120,230,102&lt;br /&gt;
|{{TM|1RB1LC_0LA1RD_0RB0LC_1LA0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;2 \times 10^{23}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA1RA1LB_0LB2RB3RB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|&amp;lt;math&amp;gt;5.418 \times 10^{51}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{14,006}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_0LC0LB_0LD1LC_1RD1RA_0RC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0LB2LA_1LA0RC0LB_2RC2RB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler period|Periodic]] ===&lt;br /&gt;
Maximum translated cycler period done by a n-state, m-symbol Turing Machine with k undefined instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0RB_1LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,2)&lt;br /&gt;
|92&lt;br /&gt;
|{{TM|1RB0LA_0RC1LA_1LC0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|1,195&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,4)&lt;br /&gt;
|33,209,131&lt;br /&gt;
|{{TM|1RB0RA3LB1RB_2LA0LB1RA2RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(4,2)&lt;br /&gt;
|212,081,736&lt;br /&gt;
|{{TM|1RB0LA_0RC1RD_1LD0RB_1LA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|8,468,569,863&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Turing machine variations ==&lt;br /&gt;
&lt;br /&gt;
=== [[Terminating Turmite|Turmite]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k+1 undefined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2,1)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PC0PB_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0PC_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2,1)&lt;br /&gt;
|139&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PD0TC_---0TA_1TA1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3,1)&lt;br /&gt;
|683&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA---_1PC1PB0TC_2PA1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2)&lt;br /&gt;
|758&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_0PD1PB_1PA1TA_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,4)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite instructions ===&lt;br /&gt;
Maximum number of steps done by a Turmite machine with n defined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTi(2)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(3)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(4)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(5)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(7)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(8)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turmite machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_1TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2TB---_1TA0PB0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1PC1TC_1TB0PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB0PC_1PC0TA_1TB1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4,1)&lt;br /&gt;
|44&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PB0PB---_2TB2TA3TA1TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2,1)&lt;br /&gt;
|48&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PC_0TB1TD_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,2)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,1)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---1TC_2PC1TA0PB_2TB2TC2PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3)&lt;br /&gt;
|134&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PC2TB_1TC0TA0PB_2TC1TA2TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2)&lt;br /&gt;
|166&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_0PC0TA_0PD0PB_1TB1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turmite machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTti(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(4)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_1TC1PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(5)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_0PD---_1TC0TD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(6)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(7)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(8)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2,1)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PC0TC_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2,1)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2)&lt;br /&gt;
|267&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TD_1PC0PA_0PA0TD_1PD0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,4)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,3)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(3)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(4)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(6)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(8)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(9)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol turmite machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2,1)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PC_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PC0PA_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2,1)&lt;br /&gt;
|30&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_1PD0PC_0PA---_0PB---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(3)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(4)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(5)&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TA_2PB0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(6)&lt;br /&gt;
|36&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TC_2PB0PA---_0TB------&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(7)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Lambda calculus ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for SKI calculus#SK calculus|SK calculus]] ===&lt;br /&gt;
Maximum normal form size of any closed SK term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;SSSS&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(6)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(7)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(S(SKS))S&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BCKW calculus ===&lt;br /&gt;
Maximum normal form size of any closed BCKW term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;BBB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(4)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(5)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BBB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(6)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(7)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BBB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(WB(BB)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for lambda calculus#De Bruijn|De Bruijn]] ===&lt;br /&gt;
Maximum normal form size of any closed lambda term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBL(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(9)&lt;br /&gt;
|68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(10)&lt;br /&gt;
|&amp;lt;math&amp;gt;7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(12)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(13)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(15)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(18)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^3}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(26)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\epsilon_0+1}(3)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 1) (\\1 2 1) (\1 (\2 1 2))) (\\\2 3 (\3 1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tag system ==&lt;br /&gt;
&lt;br /&gt;
=== 2-tag system ===&lt;br /&gt;
Maximum number of transformations performed with a 2-tag system of size n. Its size if the sum of the number of letters and the number of different letters.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(4)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(5)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(6)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(7)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(8)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(9)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(11)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(12)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bc, a, aaa&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Cyclic tag ===&lt;br /&gt;
Maximum number of transformations that can be done with a cyclic tag system of size n. Its size if the sum of the number of bits and the number of instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(6)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(7)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(9)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(10)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 0000&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tree rewriting ===&lt;br /&gt;
Maximum number of transformations that can be done with a tree rewriting system of size n. Its size if the number of brackets.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: () P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(4)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(5)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(8)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(14)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()(()) P: (()) &amp;gt; ((())), ()()() &amp;gt; _, () &amp;gt; ()()&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(23)&lt;br /&gt;
|672&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: ()() &amp;gt; (()())(), ()() &amp;gt; ()()(()), () &amp;gt; (()), (((()))) &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(38)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 10 \uparrow 54&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: (())(()()) P: (()()) &amp;gt; (()())(()), (()()) &amp;gt; (()())(()), ()(()) &amp;gt; (())((())), ((())) &amp;gt; ((()))()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(45)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 130&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((())) P: ((())) &amp;gt; ((()))(()()), (()()) &amp;gt; (()())(()), (()) &amp;gt; (())(()()()), (()()()) &amp;gt; (()()())()(), ()()() &amp;gt; _, () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(69)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((()())) P: ((()())) &amp;gt; ((()()))((())), ((())) &amp;gt; ((()))(()()()), ((())) &amp;gt; ((()))(()()()), (()()()) &amp;gt; (()()())(()()), (()()) &amp;gt; (()())(())(()), (()) &amp;gt; (())()()()()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Fractran ==&lt;br /&gt;
&lt;br /&gt;
=== [[Fractran]] ===&lt;br /&gt;
Maximum number of instructions applied by a fractran program of size n before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBf(10)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;[729/2, 1/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(11)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;[27/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(12)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(13)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(14)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;[243/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(15)&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 25/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(16)&lt;br /&gt;
|53&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 125/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(17)&lt;br /&gt;
|107&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 40/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(18)&lt;br /&gt;
|211&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 80/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(19)&lt;br /&gt;
|370&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 160/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(20)&lt;br /&gt;
|746&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 22/3, 6/77, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(21)&lt;br /&gt;
|31,957,632&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 4/3, 27/14, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.146 \times 10^{62}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/12, 9/10, 14/3, 11/2, 5/7, 3/11]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Brainfuck ==&lt;br /&gt;
&lt;br /&gt;
=== Brainfuck ===&lt;br /&gt;
Maximum number of instructions read by a brainfuck program with n instructions (uses &amp;lt;code&amp;gt;+-&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols). Cells size are unbounded and can have negative values.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;++++++&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[-]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(8)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;+++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(9)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(10)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;+++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(11)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;+[[&amp;gt;]-&amp;lt;+&amp;lt;+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Boolfuck ===&lt;br /&gt;
Maximum number of instructions read by a boolfuck program with n instructions (uses &amp;lt;code&amp;gt;*&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(10)&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(11)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(12)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(13)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(14)&lt;br /&gt;
|58&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+[&amp;lt;+&amp;lt;+[&amp;gt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(17)&lt;br /&gt;
|109&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(19)&lt;br /&gt;
|112&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(20)&lt;br /&gt;
|180&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(22)&lt;br /&gt;
|183&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(23)&lt;br /&gt;
|269&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BitChanger ===&lt;br /&gt;
Maximum number of instructions read by a bitchanger program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;}[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(9)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(10)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(11)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(12)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitter ===&lt;br /&gt;
Maximum number of instructions read by a bitter program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(11)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(12)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Minsky machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Register machine|Minsky machines]] ===&lt;br /&gt;
Maximum number of steps done by a Minsky machine before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|MBB(1)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;0+*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(2)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(3)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0+C_0-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(4)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1+C_0-BD_1-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;0-DB_0+C_1-ED_1+A_1-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(6)&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1-FC_1+D_0-CE_0+A_1-A*&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Champions_Zoology&amp;diff=5928</id>
		<title>User:Azerty/Champions Zoology</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Champions_Zoology&amp;diff=5928"/>
		<updated>2025-12-31T09:15:35Z</updated>

		<summary type="html">&lt;p&gt;Azerty: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a zoology of champions and what they compute.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Classification&lt;br /&gt;
!Examples&lt;br /&gt;
!Scale&lt;br /&gt;
|-&lt;br /&gt;
|Chaotic&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB1LB_1LA---|halt}} BB(2,2)&lt;br /&gt;
* {{TM|1RB---_1LB0RC_1LC1LA|halt}} BB(3,2)&lt;br /&gt;
* {{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}} BB(4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(n^2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Multiplier&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB2LB---_2LA2RB1LB|halt}} BB(2,3)&lt;br /&gt;
* {{TM|1RB1LB_1LA1LC_1RC0LC|halt}} BLB(3,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(n^2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Piecewise Affine Function]]&lt;br /&gt;
|&lt;br /&gt;
* &amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt; TT(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(n^3)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Exponentiater&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}} BBti(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(2^n)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Collatz-like]]&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}} BB(2,4)&lt;br /&gt;
* {{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}} BB(5,2)&lt;br /&gt;
* {{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}} BB(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(2^n)&amp;lt;/math&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=Blanking_Busy_Beaver_Function&amp;diff=5927</id>
		<title>Blanking Busy Beaver Function</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=Blanking_Busy_Beaver_Function&amp;diff=5927"/>
		<updated>2025-12-31T08:51:40Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* Champions */ New BLB(3,3) champion!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;Blanking Busy Beaver Function&#039;&#039;&#039; (BLB(n,m)) is a [[Busy Beaver Functions|Busy Beaver Function]] which measures the largest amount of steps done by any [[Turing machine]] with n states and m symbols before blanking the tape. Blanking Busy Beaver machines are allowed to be halting or non-halting. As machines with just a single state cannot blank the tape, BLB(1,m) is nonexistent for any amount of symbols m. Similarly, BLB(n,1) is nonexistent for any amount of states n, as the tape of [[BB(n,1)|1-symbol machines]] is always blank.&lt;br /&gt;
&lt;br /&gt;
== Champions ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&#039;&#039;&#039;2 Symbols:&#039;&#039;&#039;&lt;br /&gt;
!Steps&lt;br /&gt;
!Champions&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2)&lt;br /&gt;
|≥ 8&amp;lt;ref name=&amp;quot;:3&amp;quot;&amp;gt;Nick Drozd. &amp;quot;[https://nickdrozd.github.io/2021/02/14/blanking-beavers.html Blanking Beavers]&amp;quot;. Accessed 15 August 2025.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3)&lt;br /&gt;
|≥ 34&amp;lt;ref name=&amp;quot;:4&amp;quot;&amp;gt;Nick Drozd. &amp;quot;[https://nickdrozd.github.io/2022/02/11/latest-beeping-busy-beaver-results.html Latest Beeping Busy Beaver Results]&amp;quot;. Accessed 15 August 2025.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4)&lt;br /&gt;
|≥ 32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5)&lt;br /&gt;
|≥ 32,810,047&amp;lt;ref&amp;gt;Comment #71 &amp;quot;https://scottaaronson.blog/?p=5661&amp;quot;. Accessed 26 September 2025.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6)&lt;br /&gt;
|≥ 65,538,549&amp;lt;ref&amp;gt;Comment #62 &amp;quot;https://scottaaronson.blog/?p=5661&amp;quot;. Accessed 26 September 2025.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&#039;&#039;&#039;3 Symbols:&#039;&#039;&#039;&lt;br /&gt;
!Steps&lt;br /&gt;
!Champions&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|≥ 77&amp;lt;ref name=&amp;quot;:4&amp;quot; /&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3)&lt;br /&gt;
|≥ 329&lt;br /&gt;
|{{TM|1RB2LC2LA_1LC---2RA_2RC2LB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!&#039;&#039;&#039;4 Symbols:&#039;&#039;&#039;&lt;br /&gt;
!Steps&lt;br /&gt;
!Champions&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|≥ 1,367,361,263,049&amp;lt;ref name=&amp;quot;:4&amp;quot; /&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [[Instruction-Limited Busy Beaver|Instruction-limited]] Blanking Busy Beaver (BLBi(n)) ==&lt;br /&gt;
BLBi(n) is the largest amount of steps taken by an n-instruction Turing machine when blanking the tape for the first time after having written a non-blank symbol on the tape.&lt;br /&gt;
&lt;br /&gt;
=== Champions ===&lt;br /&gt;
Note that BLBi(1) and BLBi(2) are nonexistent as Turing machines with one or two instructions cannot blank the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Instructions&lt;br /&gt;
!Steps&lt;br /&gt;
!Champions&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|808&lt;br /&gt;
|?&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|≥ 1,367,361,263,049&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
[[Category:Functions]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Champions_Zoology&amp;diff=5926</id>
		<title>User:Azerty/Champions Zoology</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Champions_Zoology&amp;diff=5926"/>
		<updated>2025-12-31T08:40:59Z</updated>

		<summary type="html">&lt;p&gt;Azerty: Added a multiplier example.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a zoology of champions and what they compute.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Classification&lt;br /&gt;
!Examples&lt;br /&gt;
!Scale&lt;br /&gt;
|-&lt;br /&gt;
|Chaotic&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB1LB_1LA---|halt}} BB(2,2)&lt;br /&gt;
* {{TM|1RB---_1LB0RC_1LC1LA|halt}} BB(3,2)&lt;br /&gt;
* {{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}} BB(4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(n^2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Multiplier&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB2LB---_2LA2RB1LB|halt}} BB(2,3)&lt;br /&gt;
* {{TM|1RB1LB_1LA1LC_1RC0LC|halt}} BLB(3,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(n^2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Piecewise Affine Function]]&lt;br /&gt;
|&lt;br /&gt;
* &amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt; TT(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(n^3)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Exponentier&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}} BBt(3,3)&lt;br /&gt;
* {{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}} BBti(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(2^n)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Collatz-like]]&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}} BB(2,4)&lt;br /&gt;
* {{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}} BB(5,2)&lt;br /&gt;
* {{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}} BB(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(2^n)&amp;lt;/math&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5925</id>
		<title>User:Azerty/Busy Beaver Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5925"/>
		<updated>2025-12-30T22:14:07Z</updated>

		<summary type="html">&lt;p&gt;Azerty: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of Busy Beaver functions for Turing machines and other simple Turing-complete systems and their current lower bounds.&lt;br /&gt;
&lt;br /&gt;
I only add functions that meet the requirements below:&lt;br /&gt;
&lt;br /&gt;
* The function must grow uncomputably fast, like BB(n).&lt;br /&gt;
* The function must not have similar champions to other function, like Σ(n).&lt;br /&gt;
* The function must not be arbitrary complex.&lt;br /&gt;
&lt;br /&gt;
== Turing machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver Functions|Classic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2)|BB(2,2)]]&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,3,1)&lt;br /&gt;
|14&lt;br /&gt;
|{{TM|0RB---1LB_1LA2RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3)|BB(3,2)]]&lt;br /&gt;
|21&lt;br /&gt;
|{{TM|1RB---_1LB0RC_1LC1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,3)]]&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(4,2,1)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB---_1LB0LC_1RD1LD_0RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,2)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB---0RC_2LC------_2RC0LC1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4)|BB(4,2)]]&lt;br /&gt;
|107&lt;br /&gt;
|{{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,4,1)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(5,2,1)&lt;br /&gt;
|242&lt;br /&gt;
|{{TM|1RB0LA_1RC0LA_1LD0RE_---1LA_---0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,4)]]&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,1)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA_1LC1LA2RB_---1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(5)|BB(5,2)]]&lt;br /&gt;
|47,176,870&lt;br /&gt;
|{{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(6,2,1)&lt;br /&gt;
|17,397,627,083&lt;br /&gt;
|{{TM|1RB0LA_1RC1RD_1LB1RA_---0RE_1LF0RC_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;1.191 \times 10^{17}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,5)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,6)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10^{10^{115}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3RB5RA1LB5LA2LB_2LA2RA4RB---3LB2LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(6)|BB(6,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_1RC---_1LD0RF_1RA0LE_0LD1RC_1RA0RE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10^{28}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(7)|BB(7,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{11} 10 \uparrow^{10} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LC1LF_1RD0LB_1RA1LE_---0LC_1RG1LD_0RG0RF|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,4)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(9,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega(10 \uparrow^{7} 10 \uparrow^{7} 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_1LB0LH|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,5)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(10,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(11,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(12,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(15,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(16,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,7)]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Instruction-Limited Busy Beaver|Instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(5)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(6)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(7)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(9)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(29)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(31)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turing machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB---2RB_2LB2RA0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2,1)&lt;br /&gt;
|11&lt;br /&gt;
|{{TM|1RB---_0RC0RB_1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|0RB0LB_0RC1RC_1LA0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB0RA0RB_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4,1)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB3RA0RB0RA_2LA2RB1LB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4)&lt;br /&gt;
|49&lt;br /&gt;
|{{TM|1RB2RA2RB2LA_2LB0RA3RB0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2,1)&lt;br /&gt;
|55&lt;br /&gt;
|{{TM|0RB---_1RC0LD_1RD1RB_1LB0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2)&lt;br /&gt;
|63&lt;br /&gt;
|{{TM|0RB0LD_0RC1LC_0RD1LA_1LB1RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(5,2,1)&lt;br /&gt;
|70&lt;br /&gt;
|{{TM|0RB---_0RC1LC_1RD0RE_1RE1RD_1LE1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3,2)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3)&lt;br /&gt;
|202&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,3,2)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turing machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBti(3)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(4)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(5)&lt;br /&gt;
|18&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(6)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB------_1RC------_1RD------_2LD2RD0RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(7)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(8)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function|Blanking]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2,1)&lt;br /&gt;
|16&lt;br /&gt;
|{{TM|1RB---_1LC0LC_1RC0LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3,1)&lt;br /&gt;
|22&lt;br /&gt;
|{{TM|1RB2LB---_2LA0RB1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2)&lt;br /&gt;
|34&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2,1)&lt;br /&gt;
|169&lt;br /&gt;
|{{TM|1RB---_0RC0LA_1LC1LD_0RB0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,2)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,1)&lt;br /&gt;
|308&lt;br /&gt;
|{{TM|1RB1RC---_1LB1RA2RB_0RB2LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2)&lt;br /&gt;
|32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5,2)&lt;br /&gt;
|32,810,047&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6,2)&lt;br /&gt;
|65,538,549&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function#Instruction-limited Blanking Busy Beaver (BLBi(n))|Blanking instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2)&lt;br /&gt;
|19&lt;br /&gt;
|{{TM|1RB1RA_0RC---_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2,1)&lt;br /&gt;
|32&lt;br /&gt;
|{{TM|1RB---_1LC---_0LD0LC_1RD0RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2,1)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(5)&lt;br /&gt;
|23&lt;br /&gt;
|{{TM|1RB------_0RC------_1LC2LB0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(6)&lt;br /&gt;
|66&lt;br /&gt;
|{{TM|1RB------_1LB0LC---_1RC2RA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(7)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(8)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(9)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBws(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(3,2)&lt;br /&gt;
|20&lt;br /&gt;
|{{TM|1RB---_0LC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(4,2)&lt;br /&gt;
|53&lt;br /&gt;
|{{TM|1RB1LB_1LC1RD_1RA1LA_---0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move and write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol and go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(4,2)&lt;br /&gt;
|29&lt;br /&gt;
|{{TM|1RB1RD_0LC0LA_1LC1LA_0RC---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Reversible Turing Machine|Reversible]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol reversible Turing machine with k+1 instructions transitions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|0RB---_1LA1RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|0RB---_0LC1RA_1RB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(4,2)&lt;br /&gt;
|48&lt;br /&gt;
|{{TM|1RB0LD_0LC0RB_1LA1LD_1LC---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(5,2)&lt;br /&gt;
|388&lt;br /&gt;
|{{TM|1RB0RD_1RC0RB_1RD---_1LE1LA_0LE0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(6,2)&lt;br /&gt;
|537,556&lt;br /&gt;
|{{TM|1RB1LD_1LC1RE_0LD0LC_0RE0RF_0RA---_1RF1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(7,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{19}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LD_0LC0LD_1LC1LA_0LA1RE_0RF0RE_0RG1RF_0RB---|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Maximum Consecutive Ones Function|Consecutive ones]] ===&lt;br /&gt;
Maximum number of consecutive 1s left on the tape by a n-state, m-symbol Turing machine with k+1 undefined instructions after halting. TMs must leave all their 1s consecutively.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2,1)&lt;br /&gt;
|2&lt;br /&gt;
|{{TM|1RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LC_1RC---_1LA0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,3)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB0LA_1RC1LB_1LB1RD_---0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,3)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB1RA---_1LC1LC2LA_2RA1LB1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(5,2)&lt;br /&gt;
|165&lt;br /&gt;
|{{TM|1RB1LA_1RC1LE_1RD1RE_0LA1RC_---0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler preperiod|Preperiodic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before turning into a translated cycler.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB---_1LB0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0LB_1LA0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(3,2)&lt;br /&gt;
|101&lt;br /&gt;
|{{TM|1RB1LB_0RC0LA_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(4,2)&lt;br /&gt;
|119,120,230,102&lt;br /&gt;
|{{TM|1RB1LC_0LA1RD_0RB0LC_1LA0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;2 \times 10^{23}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA1RA1LB_0LB2RB3RB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|&amp;lt;math&amp;gt;5.418 \times 10^{51}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{14,006}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_0LC0LB_0LD1LC_1RD1RA_0RC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0LB2LA_1LA0RC0LB_2RC2RB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler period|Periodic]] ===&lt;br /&gt;
Maximum translated cycler period done by a n-state, m-symbol Turing Machine with k undefined instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0RB_1LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,2)&lt;br /&gt;
|92&lt;br /&gt;
|{{TM|1RB0LA_0RC1LA_1LC0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|1,195&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,4)&lt;br /&gt;
|33,209,131&lt;br /&gt;
|{{TM|1RB0RA3LB1RB_2LA0LB1RA2RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(4,2)&lt;br /&gt;
|212,081,736&lt;br /&gt;
|{{TM|1RB0LA_0RC1RD_1LD0RB_1LA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|8,468,569,863&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Turing machine variations ==&lt;br /&gt;
&lt;br /&gt;
=== [[Terminating Turmite|Turmite]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k+1 undefined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2,1)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PC0PB_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0PC_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2,1)&lt;br /&gt;
|139&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PD0TC_---0TA_1TA1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3,1)&lt;br /&gt;
|683&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA---_1PC1PB0TC_2PA1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2)&lt;br /&gt;
|758&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_0PD1PB_1PA1TA_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,4)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite instructions ===&lt;br /&gt;
Maximum number of steps done by a Turmite machine with n defined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTi(2)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(3)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(4)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(5)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(7)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(8)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turmite machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_1TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2TB---_1TA0PB0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1PC1TC_1TB0PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB0PC_1PC0TA_1TB1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4,1)&lt;br /&gt;
|44&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PB0PB---_2TB2TA3TA1TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2,1)&lt;br /&gt;
|48&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PC_0TB1TD_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,2)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3)&lt;br /&gt;
|134&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PC2TB_1TC0TA0PB_2TC1TA2TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2)&lt;br /&gt;
|166&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_0PC0TA_0PD0PB_1TB1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turmite machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTti(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(4)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_1TC1PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(5)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_0PD---_1TC0TD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(6)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(7)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(8)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2,1)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PC0TC_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2,1)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2)&lt;br /&gt;
|267&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TD_1PC0PA_0PA0TD_1PD0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,4)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,3)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(3)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(4)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(6)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(8)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(9)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol turmite machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2,1)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PC_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PC0PA_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2,1)&lt;br /&gt;
|30&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_1PD0PC_0PA---_0PB---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(3)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(4)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(5)&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TA_2PB0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(6)&lt;br /&gt;
|36&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TC_2PB0PA---_0TB------&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(7)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Lambda calculus ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for SKI calculus#SK calculus|SK calculus]] ===&lt;br /&gt;
Maximum normal form size of any closed SK term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;SSSS&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(6)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(7)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(S(SKS))S&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BCKW calculus ===&lt;br /&gt;
Maximum normal form size of any closed BCKW term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;BBB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(4)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(5)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BBB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(6)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(7)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BBB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(WB(BB)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for lambda calculus#De Bruijn|De Bruijn]] ===&lt;br /&gt;
Maximum normal form size of any closed lambda term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBL(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(9)&lt;br /&gt;
|68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(10)&lt;br /&gt;
|&amp;lt;math&amp;gt;7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(12)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(13)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(15)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(18)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^3}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(26)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\epsilon_0+1}(3)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 1) (\\1 2 1) (\1 (\2 1 2))) (\\\2 3 (\3 1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tag system ==&lt;br /&gt;
&lt;br /&gt;
=== 2-tag system ===&lt;br /&gt;
Maximum number of transformations performed with a 2-tag system of size n. Its size if the sum of the number of letters and the number of different letters.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(4)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(5)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(6)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(7)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(8)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(9)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(11)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(12)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bc, a, aaa&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Cyclic tag ===&lt;br /&gt;
Maximum number of transformations that can be done with a cyclic tag system of size n. Its size if the sum of the number of bits and the number of instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(6)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(7)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(9)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(10)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 0000&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tree rewriting ===&lt;br /&gt;
Maximum number of transformations that can be done with a tree rewriting system of size n. Its size if the number of brackets.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: () P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(4)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(5)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(8)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(14)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()(()) P: (()) &amp;gt; ((())), ()()() &amp;gt; _, () &amp;gt; ()()&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(23)&lt;br /&gt;
|672&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: ()() &amp;gt; (()())(), ()() &amp;gt; ()()(()), () &amp;gt; (()), (((()))) &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(38)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 10 \uparrow 54&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: (())(()()) P: (()()) &amp;gt; (()())(()), (()()) &amp;gt; (()())(()), ()(()) &amp;gt; (())((())), ((())) &amp;gt; ((()))()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(45)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 130&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((())) P: ((())) &amp;gt; ((()))(()()), (()()) &amp;gt; (()())(()), (()) &amp;gt; (())(()()()), (()()()) &amp;gt; (()()())()(), ()()() &amp;gt; _, () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(69)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((()())) P: ((()())) &amp;gt; ((()()))((())), ((())) &amp;gt; ((()))(()()()), ((())) &amp;gt; ((()))(()()()), (()()()) &amp;gt; (()()())(()()), (()()) &amp;gt; (()())(())(()), (()) &amp;gt; (())()()()()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Fractran ==&lt;br /&gt;
&lt;br /&gt;
=== [[Fractran]] ===&lt;br /&gt;
Maximum number of instructions applied by a fractran program of size n before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBf(10)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;[729/2, 1/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(11)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;[27/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(12)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(13)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(14)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;[243/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(15)&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 25/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(16)&lt;br /&gt;
|53&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 125/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(17)&lt;br /&gt;
|107&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 40/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(18)&lt;br /&gt;
|211&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 80/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(19)&lt;br /&gt;
|370&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 160/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(20)&lt;br /&gt;
|746&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 22/3, 6/77, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(21)&lt;br /&gt;
|31,957,632&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 4/3, 27/14, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.146 \times 10^{62}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/12, 9/10, 14/3, 11/2, 5/7, 3/11]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Brainfuck ==&lt;br /&gt;
&lt;br /&gt;
=== Brainfuck ===&lt;br /&gt;
Maximum number of instructions read by a brainfuck program with n instructions (uses &amp;lt;code&amp;gt;+-&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols). Cells size are unbounded and can have negative values.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;++++++&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[-]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(8)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;+++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(9)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(10)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;+++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(11)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;+[[&amp;gt;]-&amp;lt;+&amp;lt;+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Boolfuck ===&lt;br /&gt;
Maximum number of instructions read by a boolfuck program with n instructions (uses &amp;lt;code&amp;gt;*&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(10)&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(11)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(12)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(13)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(14)&lt;br /&gt;
|58&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+[&amp;lt;+&amp;lt;+[&amp;gt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(17)&lt;br /&gt;
|109&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(19)&lt;br /&gt;
|112&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(20)&lt;br /&gt;
|180&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(22)&lt;br /&gt;
|183&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(23)&lt;br /&gt;
|269&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BitChanger ===&lt;br /&gt;
Maximum number of instructions read by a bitchanger program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;}[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(9)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(10)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(11)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(12)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitter ===&lt;br /&gt;
Maximum number of instructions read by a bitter program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(11)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(12)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Minsky machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Register machine|Minsky machines]] ===&lt;br /&gt;
Maximum number of steps done by a Minsky machine before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|MBB(1)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;0+*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(2)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(3)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0+C_0-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(4)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1+C_0-BD_1-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;0-DB_0+C_1-ED_1+A_1-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(6)&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1-FC_1+D_0-CE_0+A_1-A*&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5918</id>
		<title>User:Azerty/Busy Beaver Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5918"/>
		<updated>2025-12-30T13:58:25Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* De Bruijn */ Added new champions.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of Busy Beaver functions for Turing machines and other simple Turing-complete systems and their current lower bounds.&lt;br /&gt;
&lt;br /&gt;
I only add functions that follow the requirements below:&lt;br /&gt;
&lt;br /&gt;
* The function must grow uncomputably fast, like BB(n).&lt;br /&gt;
* The function must not have similar champions to other function, like Σ(n).&lt;br /&gt;
* The function must not be arbitrary complex.&lt;br /&gt;
&lt;br /&gt;
== Turing machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver Functions|Classic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2)|BB(2,2)]]&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,3,1)&lt;br /&gt;
|14&lt;br /&gt;
|{{TM|0RB---1LB_1LA2RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3)|BB(3,2)]]&lt;br /&gt;
|21&lt;br /&gt;
|{{TM|1RB---_1LB0RC_1LC1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,3)]]&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(4,2,1)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB---_1LB0LC_1RD1LD_0RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,2)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB---0RC_2LC------_2RC0LC1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4)|BB(4,2)]]&lt;br /&gt;
|107&lt;br /&gt;
|{{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,4,1)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(5,2,1)&lt;br /&gt;
|242&lt;br /&gt;
|{{TM|1RB0LA_1RC0LA_1LD0RE_---1LA_---0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,4)]]&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,1)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA_1LC1LA2RB_---1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(5)|BB(5,2)]]&lt;br /&gt;
|47,176,870&lt;br /&gt;
|{{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(6,2,1)&lt;br /&gt;
|17,397,627,083&lt;br /&gt;
|{{TM|1RB0LA_1RC1RD_1LB1RA_---0RE_1LF0RC_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;1.191 \times 10^{17}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,5)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,6)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10^{10^{115}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3RB5RA1LB5LA2LB_2LA2RA4RB---3LB2LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(6)|BB(6,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_1RC---_1LD0RF_1RA0LE_0LD1RC_1RA0RE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10^{28}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(7)|BB(7,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{11} 10 \uparrow^{10} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LC1LF_1RD0LB_1RA1LE_---0LC_1RG1LD_0RG0RF|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,4)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(9,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega(10 \uparrow^{7} 10 \uparrow^{7} 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_1LB0LH|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,5)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(10,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(11,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(12,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(15,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(16,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,7)]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Instruction-Limited Busy Beaver|Instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(5)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(6)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(7)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(9)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(29)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(31)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turing machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB---2RB_2LB2RA0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2,1)&lt;br /&gt;
|11&lt;br /&gt;
|{{TM|1RB---_0RC0RB_1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|0RB0LB_0RC1RC_1LA0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB0RA0RB_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4,1)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB3RA0RB0RA_2LA2RB1LB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4)&lt;br /&gt;
|49&lt;br /&gt;
|{{TM|1RB2RA2RB2LA_2LB0RA3RB0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2,1)&lt;br /&gt;
|55&lt;br /&gt;
|{{TM|0RB---_1RC0LD_1RD1RB_1LB0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2)&lt;br /&gt;
|63&lt;br /&gt;
|{{TM|0RB0LD_0RC1LC_0RD1LA_1LB1RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(5,2,1)&lt;br /&gt;
|70&lt;br /&gt;
|{{TM|0RB---_0RC1LC_1RD0RE_1RE1RD_1LE1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3,2)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3)&lt;br /&gt;
|202&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,3,2)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turing machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBti(3)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(4)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(5)&lt;br /&gt;
|18&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(6)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB------_1RC------_1RD------_2LD2RD0RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(7)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(8)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function|Blanking]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2,1)&lt;br /&gt;
|16&lt;br /&gt;
|{{TM|1RB---_1LC0LC_1RC0LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3,1)&lt;br /&gt;
|22&lt;br /&gt;
|{{TM|1RB2LB---_2LA0RB1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2)&lt;br /&gt;
|34&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2,1)&lt;br /&gt;
|169&lt;br /&gt;
|{{TM|1RB---_0RC0LA_1LC1LD_0RB0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,2)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,1)&lt;br /&gt;
|308&lt;br /&gt;
|{{TM|1RB1RC---_1LB1RA2RB_0RB2LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2)&lt;br /&gt;
|32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5,2)&lt;br /&gt;
|32,810,047&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6,2)&lt;br /&gt;
|65,538,549&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function#Instruction-limited Blanking Busy Beaver (BLBi(n))|Blanking instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2)&lt;br /&gt;
|19&lt;br /&gt;
|{{TM|1RB1RA_0RC---_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2,1)&lt;br /&gt;
|32&lt;br /&gt;
|{{TM|1RB---_1LC---_0LD0LC_1RD0RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2,1)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(5)&lt;br /&gt;
|23&lt;br /&gt;
|{{TM|1RB------_0RC------_1LC2LB0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(6)&lt;br /&gt;
|66&lt;br /&gt;
|{{TM|1RB------_1LB0LC---_1RC2RA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(7)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(8)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(9)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBws(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(3,2)&lt;br /&gt;
|20&lt;br /&gt;
|{{TM|1RB---_0LC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(4,2)&lt;br /&gt;
|53&lt;br /&gt;
|{{TM|1RB1LB_1LC1RD_1RA1LA_---0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move and write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol and go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(4,2)&lt;br /&gt;
|29&lt;br /&gt;
|{{TM|1RB1RD_0LC0LA_1LC1LA_0RC---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Reversible Turing Machine|Reversible]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol reversible Turing machine with k+1 instructions transitions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|0RB---_1LA1RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|0RB---_0LC1RA_1RB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(4,2)&lt;br /&gt;
|48&lt;br /&gt;
|{{TM|1RB0LD_0LC0RB_1LA1LD_1LC---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(5,2)&lt;br /&gt;
|388&lt;br /&gt;
|{{TM|1RB0RD_1RC0RB_1RD---_1LE1LA_0LE0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(6,2)&lt;br /&gt;
|537,556&lt;br /&gt;
|{{TM|1RB1LD_1LC1RE_0LD0LC_0RE0RF_0RA---_1RF1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(7,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{19}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LD_0LC0LD_1LC1LA_0LA1RE_0RF0RE_0RG1RF_0RB---|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Maximum Consecutive Ones Function|Consecutive ones]] ===&lt;br /&gt;
Maximum number of consecutive 1s left on the tape by a n-state, m-symbol Turing machine with k+1 undefined instructions after halting. TMs must leave all their 1s consecutively.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2,1)&lt;br /&gt;
|2&lt;br /&gt;
|{{TM|1RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LC_1RC---_1LA0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,3)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB0LA_1RC1LB_1LB1RD_---0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,3)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB1RA---_1LC1LC2LA_2RA1LB1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(5,2)&lt;br /&gt;
|165&lt;br /&gt;
|{{TM|1RB1LA_1RC1LE_1RD1RE_0LA1RC_---0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler preperiod|Preperiodic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before turning into a translated cycler.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB---_1LB0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0LB_1LA0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(3,2)&lt;br /&gt;
|101&lt;br /&gt;
|{{TM|1RB1LB_0RC0LA_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(4,2)&lt;br /&gt;
|119,120,230,102&lt;br /&gt;
|{{TM|1RB1LC_0LA1RD_0RB0LC_1LA0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;2 \times 10^{23}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA1RA1LB_0LB2RB3RB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|&amp;lt;math&amp;gt;5.418 \times 10^{51}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{14,006}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_0LC0LB_0LD1LC_1RD1RA_0RC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0LB2LA_1LA0RC0LB_2RC2RB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler period|Periodic]] ===&lt;br /&gt;
Maximum translated cycler period done by a n-state, m-symbol Turing Machine with k undefined instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0RB_1LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,2)&lt;br /&gt;
|92&lt;br /&gt;
|{{TM|1RB0LA_0RC1LA_1LC0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|1,195&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,4)&lt;br /&gt;
|33,209,131&lt;br /&gt;
|{{TM|1RB0RA3LB1RB_2LA0LB1RA2RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(4,2)&lt;br /&gt;
|212,081,736&lt;br /&gt;
|{{TM|1RB0LA_0RC1RD_1LD0RB_1LA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|8,468,569,863&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Turing machine variations ==&lt;br /&gt;
&lt;br /&gt;
=== [[Terminating Turmite|Turmite]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k+1 undefined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2,1)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PC0PB_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0PC_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2,1)&lt;br /&gt;
|139&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PD0TC_---0TA_1TA1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3,1)&lt;br /&gt;
|683&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA---_1PC1PB0TC_2PA1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2)&lt;br /&gt;
|758&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_0PD1PB_1PA1TA_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,4)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite instructions ===&lt;br /&gt;
Maximum number of steps done by a Turmite machine with n defined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTi(2)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(3)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(4)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(5)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(7)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(8)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turmite machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_1TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2TB---_1TA0PB0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1PC1TC_1TB0PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB0PC_1PC0TA_1TB1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4,1)&lt;br /&gt;
|44&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PB0PB---_2TB2TA3TA1TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2,1)&lt;br /&gt;
|48&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PC_0TB1TD_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,2)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3)&lt;br /&gt;
|134&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PC2TB_1TC0TA0PB_2TC1TA2TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2)&lt;br /&gt;
|166&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_0PC0TA_0PD0PB_1TB1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turmite machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTti(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(4)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_1TC1PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(5)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_0PD---_1TC0TD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(6)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(7)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(8)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2,1)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PC0TC_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2,1)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2)&lt;br /&gt;
|267&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TD_1PC0PA_0PA0TD_1PD0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,4)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,3)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(3)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(4)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(6)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(8)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(9)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol turmite machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2,1)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PC_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PC0PA_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2,1)&lt;br /&gt;
|30&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_1PD0PC_0PA---_0PB---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(3)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(4)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(5)&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TA_2PB0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(6)&lt;br /&gt;
|36&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TC_2PB0PA---_0TB------&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(7)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Lambda calculus ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for SKI calculus#SK calculus|SK calculus]] ===&lt;br /&gt;
Maximum normal form size of any closed SK term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;SSSS&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(6)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(7)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(S(SKS))S&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BCKW calculus ===&lt;br /&gt;
Maximum normal form size of any closed BCKW term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;BBB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(4)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(5)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BBB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(6)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(7)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BBB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(WB(BB)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for lambda calculus#De Bruijn|De Bruijn]] ===&lt;br /&gt;
Maximum normal form size of any closed lambda term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBL(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(9)&lt;br /&gt;
|68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(10)&lt;br /&gt;
|&amp;lt;math&amp;gt;7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(12)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(13)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(15)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(18)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^3}(2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) 1 1 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(26)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\epsilon_0+1}(3)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\1 1) (\\1 2 1) (\1 (\2 1 2))) (\\\2 3 (\3 1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tag system ==&lt;br /&gt;
&lt;br /&gt;
=== 2-tag system ===&lt;br /&gt;
Maximum number of transformations performed with a 2-tag system of size n. Its size if the sum of the number of letters and the number of different letters.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(4)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(5)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(6)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(7)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(8)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(9)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(11)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(12)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bc, a, aaa&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Cyclic tag ===&lt;br /&gt;
Maximum number of transformations that can be done with a cyclic tag system of size n. Its size if the sum of the number of bits and the number of instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(6)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(7)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(9)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(10)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 0000&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tree rewriting ===&lt;br /&gt;
Maximum number of transformations that can be done with a tree rewriting system of size n. Its size if the number of brackets.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: () P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(4)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(5)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(8)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(14)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()(()) P: (()) &amp;gt; ((())), ()()() &amp;gt; _, () &amp;gt; ()()&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(23)&lt;br /&gt;
|672&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: ()() &amp;gt; (()())(), ()() &amp;gt; ()()(()), () &amp;gt; (()), (((()))) &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(38)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 10 \uparrow 54&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: (())(()()) P: (()()) &amp;gt; (()())(()), (()()) &amp;gt; (()())(()), ()(()) &amp;gt; (())((())), ((())) &amp;gt; ((()))()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(45)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 130&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((())) P: ((())) &amp;gt; ((()))(()()), (()()) &amp;gt; (()())(()), (()) &amp;gt; (())(()()()), (()()()) &amp;gt; (()()())()(), ()()() &amp;gt; _, () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(69)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((()())) P: ((()())) &amp;gt; ((()()))((())), ((())) &amp;gt; ((()))(()()()), ((())) &amp;gt; ((()))(()()()), (()()()) &amp;gt; (()()())(()()), (()()) &amp;gt; (()())(())(()), (()) &amp;gt; (())()()()()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Fractran ==&lt;br /&gt;
&lt;br /&gt;
=== [[Fractran]] ===&lt;br /&gt;
Maximum number of instructions applied by a fractran program of size n before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBf(10)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;[729/2, 1/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(11)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;[27/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(12)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(13)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(14)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;[243/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(15)&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 25/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(16)&lt;br /&gt;
|53&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 125/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(17)&lt;br /&gt;
|107&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 40/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(18)&lt;br /&gt;
|211&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 80/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(19)&lt;br /&gt;
|370&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 160/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(20)&lt;br /&gt;
|746&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 22/3, 6/77, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(21)&lt;br /&gt;
|31,957,632&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 4/3, 27/14, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.146 \times 10^{62}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/12, 9/10, 14/3, 11/2, 5/7, 3/11]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Brainfuck ==&lt;br /&gt;
&lt;br /&gt;
=== Brainfuck ===&lt;br /&gt;
Maximum number of instructions read by a brainfuck program with n instructions (uses &amp;lt;code&amp;gt;+-&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols). Cells size are unbounded and can have negative values.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;++++++&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[-]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(8)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;+++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(9)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(10)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;+++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(11)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;+[[&amp;gt;]-&amp;lt;+&amp;lt;+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Boolfuck ===&lt;br /&gt;
Maximum number of instructions read by a boolfuck program with n instructions (uses &amp;lt;code&amp;gt;*&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(10)&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(11)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(12)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(13)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(14)&lt;br /&gt;
|58&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+[&amp;lt;+&amp;lt;+[&amp;gt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(17)&lt;br /&gt;
|109&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(19)&lt;br /&gt;
|112&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(20)&lt;br /&gt;
|180&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(22)&lt;br /&gt;
|183&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(23)&lt;br /&gt;
|269&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BitChanger ===&lt;br /&gt;
Maximum number of instructions read by a bitchanger program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;}[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(9)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(10)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(11)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(12)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitter ===&lt;br /&gt;
Maximum number of instructions read by a bitter program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(11)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(12)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Minsky machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Register machine|Minsky machines]] ===&lt;br /&gt;
Maximum number of steps done by a Minsky machine before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|MBB(1)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;0+*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(2)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(3)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0+C_0-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(4)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1+C_0-BD_1-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;0-DB_0+C_1-ED_1+A_1-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(6)&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1-FC_1+D_0-CE_0+A_1-A*&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Champions_Zoology&amp;diff=5911</id>
		<title>User:Azerty/Champions Zoology</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Champions_Zoology&amp;diff=5911"/>
		<updated>2025-12-30T09:44:02Z</updated>

		<summary type="html">&lt;p&gt;Azerty: Added more Collatz-like examples.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a zoology of champions and what they compute.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Classification&lt;br /&gt;
!Examples&lt;br /&gt;
!Scale&lt;br /&gt;
|-&lt;br /&gt;
|Chaotic&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB1LB_1LA---|halt}} BB(2,2)&lt;br /&gt;
* {{TM|1RB---_1LB0RC_1LC1LA|halt}} BB(3,2)&lt;br /&gt;
* {{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}} BB(4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(n^2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Multiplier&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB2LB---_2LA2RB1LB|halt}} BB(2,3)&lt;br /&gt;
* {{TM|1RB1LB_1LA1LC_1RC0LC|halt}} BBt(3,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(n^2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Piecewise Affine Function]]&lt;br /&gt;
|&lt;br /&gt;
* &amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt; TT(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(n^3)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Counter&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}} BBt(3,3,2)&lt;br /&gt;
* {{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}} BBti(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(2^n)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Collatz-like]]&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}} BB(2,4)&lt;br /&gt;
* {{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}} BB(5,2)&lt;br /&gt;
* {{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}} BB(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(2^n)&amp;lt;/math&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Champions_Zoology&amp;diff=5910</id>
		<title>User:Azerty/Champions Zoology</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Champions_Zoology&amp;diff=5910"/>
		<updated>2025-12-30T09:08:14Z</updated>

		<summary type="html">&lt;p&gt;Azerty: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a zoology of champions and what they compute.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Classification&lt;br /&gt;
!Examples&lt;br /&gt;
!Scale&lt;br /&gt;
|-&lt;br /&gt;
|Chaotic&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB1LB_1LA---|halt}} BB(2,2)&lt;br /&gt;
* {{TM|1RB---_1LB0RC_1LC1LA|halt}} BB(3,2)&lt;br /&gt;
* {{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}} BB(4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(n^2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Multiplier&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB2LB---_2LA2RB1LB|halt}} BB(2,3)&lt;br /&gt;
* {{TM|1RB1LB_1LA1LC_1RC0LC|halt}} BBt(3,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(n^2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Piecewise Affine Function]]&lt;br /&gt;
|&lt;br /&gt;
* &amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt; TT(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(n^3)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Counter&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}} BBt(3,3,2)&lt;br /&gt;
* {{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}} BBti(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(2^n)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Collatz-like]]&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB|halt}} BBwsms(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(2^n)&amp;lt;/math&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Champions_Zoology&amp;diff=5894</id>
		<title>User:Azerty/Champions Zoology</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Champions_Zoology&amp;diff=5894"/>
		<updated>2025-12-29T14:28:54Z</updated>

		<summary type="html">&lt;p&gt;Azerty: Added Collatz-like function.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a zoology of champions and what they compute.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Classification&lt;br /&gt;
!Description&lt;br /&gt;
!Examples&lt;br /&gt;
!Scale&lt;br /&gt;
|-&lt;br /&gt;
|Chaotic&lt;br /&gt;
|Have a chaotic behavior and repeating patterns that go back and forth.&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB1LB_1LA---|halt}} BB(2,2)&lt;br /&gt;
* {{TM|1RB---_1LB0RC_1LC1LA|halt}} BB(3,2)&lt;br /&gt;
* {{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}} BB(4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(n^2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Multiplier&lt;br /&gt;
|Create a number then multiply it.&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB2LB---_2LA2RB1LB|halt}} BB(2,3)&lt;br /&gt;
* {{TM|1RB1LB_1LA1LC_1RC0LC|halt}} BBt(3,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(n^2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Piecewise Affine Function]]&lt;br /&gt;
|Iterate a function built by gluing together straight-line formulas, each one used on a different part of the input.&lt;br /&gt;
|&lt;br /&gt;
* &amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt; TT(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(n^3)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Counter&lt;br /&gt;
|Count in base ≥ 2 until the number reaches a certain length.&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}} BBt(3,3,2)&lt;br /&gt;
* {{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}} BBti(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(2^n)&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Collatz-like]]&lt;br /&gt;
|Iterate a function that return a larger number depending of the input modulo.&lt;br /&gt;
|&lt;br /&gt;
* {{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB|halt}} BBwsms(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;O(2^n)&amp;lt;/math&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5893</id>
		<title>User:Azerty/Busy Beaver Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5893"/>
		<updated>2025-12-29T14:19:45Z</updated>

		<summary type="html">&lt;p&gt;Azerty: Added restricted move and write per state.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of Busy Beaver functions for Turing machines and other simple Turing-complete systems and their current lower bounds.&lt;br /&gt;
&lt;br /&gt;
I only add functions that follow the requirements below:&lt;br /&gt;
&lt;br /&gt;
* The function must grow uncomputably fast, like BB(n).&lt;br /&gt;
* The function must not have similar champions to other function, like Σ(n).&lt;br /&gt;
* The function must not be arbitrary complex.&lt;br /&gt;
&lt;br /&gt;
== Turing machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver Functions|Classic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2)|BB(2,2)]]&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,3,1)&lt;br /&gt;
|14&lt;br /&gt;
|{{TM|0RB---1LB_1LA2RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3)|BB(3,2)]]&lt;br /&gt;
|21&lt;br /&gt;
|{{TM|1RB---_1LB0RC_1LC1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,3)]]&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(4,2,1)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB---_1LB0LC_1RD1LD_0RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,2)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB---0RC_2LC------_2RC0LC1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4)|BB(4,2)]]&lt;br /&gt;
|107&lt;br /&gt;
|{{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,4,1)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(5,2,1)&lt;br /&gt;
|242&lt;br /&gt;
|{{TM|1RB0LA_1RC0LA_1LD0RE_---1LA_---0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,4)]]&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,1)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA_1LC1LA2RB_---1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(5)|BB(5,2)]]&lt;br /&gt;
|47,176,870&lt;br /&gt;
|{{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(6,2,1)&lt;br /&gt;
|17,397,627,083&lt;br /&gt;
|{{TM|1RB0LA_1RC1RD_1LB1RA_---0RE_1LF0RC_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;1.191 \times 10^{17}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,5)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,6)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10^{10^{115}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3RB5RA1LB5LA2LB_2LA2RA4RB---3LB2LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(6)|BB(6,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_1RC---_1LD0RF_1RA0LE_0LD1RC_1RA0RE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10^{28}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(7)|BB(7,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{11} 10 \uparrow^{10} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LC1LF_1RD0LB_1RA1LE_---0LC_1RG1LD_0RG0RF|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,4)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(9,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega(10 \uparrow^{7} 10 \uparrow^{7} 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_1LB0LH|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,5)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(10,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(11,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(12,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(15,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(16,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,7)]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Instruction-Limited Busy Beaver|Instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(5)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(6)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(7)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(9)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(29)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(31)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turing machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB---2RB_2LB2RA0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2,1)&lt;br /&gt;
|11&lt;br /&gt;
|{{TM|1RB---_0RC0RB_1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|0RB0LB_0RC1RC_1LA0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB0RA0RB_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4,1)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB3RA0RB0RA_2LA2RB1LB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4)&lt;br /&gt;
|49&lt;br /&gt;
|{{TM|1RB2RA2RB2LA_2LB0RA3RB0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2,1)&lt;br /&gt;
|55&lt;br /&gt;
|{{TM|0RB---_1RC0LD_1RD1RB_1LB0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2)&lt;br /&gt;
|63&lt;br /&gt;
|{{TM|0RB0LD_0RC1LC_0RD1LA_1LB1RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(5,2,1)&lt;br /&gt;
|70&lt;br /&gt;
|{{TM|0RB---_0RC1LC_1RD0RE_1RE1RD_1LE1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3,2)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3)&lt;br /&gt;
|202&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,3,2)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turing machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBti(3)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(4)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(5)&lt;br /&gt;
|18&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(6)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB------_1RC------_1RD------_2LD2RD0RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(7)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(8)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function|Blanking]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2,1)&lt;br /&gt;
|16&lt;br /&gt;
|{{TM|1RB---_1LC0LC_1RC0LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3,1)&lt;br /&gt;
|22&lt;br /&gt;
|{{TM|1RB2LB---_2LA0RB1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2)&lt;br /&gt;
|34&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2,1)&lt;br /&gt;
|169&lt;br /&gt;
|{{TM|1RB---_0RC0LA_1LC1LD_0RB0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,2)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,1)&lt;br /&gt;
|308&lt;br /&gt;
|{{TM|1RB1RC---_1LB1RA2RB_0RB2LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2)&lt;br /&gt;
|32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5,2)&lt;br /&gt;
|32,810,047&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6,2)&lt;br /&gt;
|65,538,549&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function#Instruction-limited Blanking Busy Beaver (BLBi(n))|Blanking instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2)&lt;br /&gt;
|19&lt;br /&gt;
|{{TM|1RB1RA_0RC---_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2,1)&lt;br /&gt;
|32&lt;br /&gt;
|{{TM|1RB---_1LC---_0LD0LC_1RD0RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2,1)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(5)&lt;br /&gt;
|23&lt;br /&gt;
|{{TM|1RB------_0RC------_1LC2LB0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(6)&lt;br /&gt;
|66&lt;br /&gt;
|{{TM|1RB------_1LB0LC---_1RC2RA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(7)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(8)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(9)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBws(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(3,2)&lt;br /&gt;
|20&lt;br /&gt;
|{{TM|1RB---_0LC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBws(4,2)&lt;br /&gt;
|53&lt;br /&gt;
|{{TM|1RB1LB_1LC1RD_1RA1LA_---0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move and write per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must write the same symbol and go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC0RC_1LC1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(4,2)&lt;br /&gt;
|29&lt;br /&gt;
|{{TM|1RB1RD_0LC0LA_1LC1LA_0RC---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBwsms(5,2)&lt;br /&gt;
|422&lt;br /&gt;
|{{TM|1RB1RA_1RC1RE_1LD---_1LA1LD_---0RB}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Reversible Turing Machine|Reversible]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol reversible Turing machine with k+1 instructions transitions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|0RB---_1LA1RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|0RB---_0LC1RA_1RB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(4,2)&lt;br /&gt;
|48&lt;br /&gt;
|{{TM|1RB0LD_0LC0RB_1LA1LD_1LC---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(5,2)&lt;br /&gt;
|388&lt;br /&gt;
|{{TM|1RB0RD_1RC0RB_1RD---_1LE1LA_0LE0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(6,2)&lt;br /&gt;
|537,556&lt;br /&gt;
|{{TM|1RB1LD_1LC1RE_0LD0LC_0RE0RF_0RA---_1RF1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(7,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{19}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LD_0LC0LD_1LC1LA_0LA1RE_0RF0RE_0RG1RF_0RB---|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Maximum Consecutive Ones Function|Consecutive ones]] ===&lt;br /&gt;
Maximum number of consecutive 1s left on the tape by a n-state, m-symbol Turing machine with k+1 undefined instructions after halting. TMs must leave all their 1s consecutively.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2,1)&lt;br /&gt;
|2&lt;br /&gt;
|{{TM|1RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LC_1RC---_1LA0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,3)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB0LA_1RC1LB_1LB1RD_---0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,3)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB1RA---_1LC1LC2LA_2RA1LB1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(5,2)&lt;br /&gt;
|165&lt;br /&gt;
|{{TM|1RB1LA_1RC1LE_1RD1RE_0LA1RC_---0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler preperiod|Preperiodic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before turning into a translated cycler.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB---_1LB0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0LB_1LA0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(3,2)&lt;br /&gt;
|101&lt;br /&gt;
|{{TM|1RB1LB_0RC0LA_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(4,2)&lt;br /&gt;
|119,120,230,102&lt;br /&gt;
|{{TM|1RB1LC_0LA1RD_0RB0LC_1LA0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;2 \times 10^{23}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA1RA1LB_0LB2RB3RB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|&amp;lt;math&amp;gt;5.418 \times 10^{51}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{14,006}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_0LC0LB_0LD1LC_1RD1RA_0RC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0LB2LA_1LA0RC0LB_2RC2RB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler period|Periodic]] ===&lt;br /&gt;
Maximum translated cycler period done by a n-state, m-symbol Turing Machine with k undefined instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0RB_1LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,2)&lt;br /&gt;
|92&lt;br /&gt;
|{{TM|1RB0LA_0RC1LA_1LC0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|1,195&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,4)&lt;br /&gt;
|33,209,131&lt;br /&gt;
|{{TM|1RB0RA3LB1RB_2LA0LB1RA2RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(4,2)&lt;br /&gt;
|212,081,736&lt;br /&gt;
|{{TM|1RB0LA_0RC1RD_1LD0RB_1LA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|8,468,569,863&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Turing machine variations ==&lt;br /&gt;
&lt;br /&gt;
=== [[Terminating Turmite|Turmite]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k+1 undefined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2,1)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PC0PB_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0PC_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2,1)&lt;br /&gt;
|139&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PD0TC_---0TA_1TA1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3,1)&lt;br /&gt;
|683&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA---_1PC1PB0TC_2PA1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2)&lt;br /&gt;
|758&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_0PD1PB_1PA1TA_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,4)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite instructions ===&lt;br /&gt;
Maximum number of steps done by a Turmite machine with n defined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTi(2)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(3)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(4)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(5)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(7)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(8)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turmite machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_1TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2TB---_1TA0PB0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1PC1TC_1TB0PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB0PC_1PC0TA_1TB1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4,1)&lt;br /&gt;
|44&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PB0PB---_2TB2TA3TA1TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2,1)&lt;br /&gt;
|48&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PC_0TB1TD_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,2)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3)&lt;br /&gt;
|134&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PC2TB_1TC0TA0PB_2TC1TA2TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2)&lt;br /&gt;
|166&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_0PC0TA_0PD0PB_1TB1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turmite machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTti(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(4)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_1TC1PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(5)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_0PD---_1TC0TD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(6)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(7)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(8)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2,1)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PC0TC_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2,1)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2)&lt;br /&gt;
|267&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TD_1PC0PA_0PA0TD_1PD0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,4)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,3)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(3)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(4)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(6)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(8)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(9)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol turmite machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2,1)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PC_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PC0PA_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2,1)&lt;br /&gt;
|30&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_1PD0PC_0PA---_0PB---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(3)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(4)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(5)&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TA_2PB0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(6)&lt;br /&gt;
|36&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TC_2PB0PA---_0TB------&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(7)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Lambda calculus ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for SKI calculus#SK calculus|SK calculus]] ===&lt;br /&gt;
Maximum normal form size of any closed SK term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;SSSS&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(6)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(7)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(S(SKS))S&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BCKW calculus ===&lt;br /&gt;
Maximum normal form size of any closed BCKW term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;BBB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(4)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(5)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BBB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(6)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(7)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BBB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(WB(BB)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for lambda calculus#De Bruijn|De Bruijn]] ===&lt;br /&gt;
Maximum normal form size of any closed lambda term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBL(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(9)&lt;br /&gt;
|68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(10)&lt;br /&gt;
|&amp;lt;math&amp;gt;7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(12)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(13)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(15)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^2}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\1 (\\1 2 1) 2 1) (\1 1) 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(24)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^2}(27)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\1 (\\1 2 1) 2 1) (\1 1) 1) 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(25)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(26)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(27)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(10^{12})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(28)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(10^{10^{12}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(34)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^\omega}}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 3 2 1) (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tag system ==&lt;br /&gt;
&lt;br /&gt;
=== 2-tag system ===&lt;br /&gt;
Maximum number of transformations performed with a 2-tag system of size n. Its size if the sum of the number of letters and the number of different letters.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(4)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(5)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(6)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(7)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(8)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(9)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(11)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(12)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bc, a, aaa&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Cyclic tag ===&lt;br /&gt;
Maximum number of transformations that can be done with a cyclic tag system of size n. Its size if the sum of the number of bits and the number of instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(6)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(7)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(9)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(10)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 0000&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tree rewriting ===&lt;br /&gt;
Maximum number of transformations that can be done with a tree rewriting system of size n. Its size if the number of brackets.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: () P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(4)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(5)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(8)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(14)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()(()) P: (()) &amp;gt; ((())), ()()() &amp;gt; _, () &amp;gt; ()()&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(23)&lt;br /&gt;
|672&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: ()() &amp;gt; (()())(), ()() &amp;gt; ()()(()), () &amp;gt; (()), (((()))) &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(38)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 10 \uparrow 54&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: (())(()()) P: (()()) &amp;gt; (()())(()), (()()) &amp;gt; (()())(()), ()(()) &amp;gt; (())((())), ((())) &amp;gt; ((()))()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(45)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 130&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((())) P: ((())) &amp;gt; ((()))(()()), (()()) &amp;gt; (()())(()), (()) &amp;gt; (())(()()()), (()()()) &amp;gt; (()()())()(), ()()() &amp;gt; _, () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(69)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((()())) P: ((()())) &amp;gt; ((()()))((())), ((())) &amp;gt; ((()))(()()()), ((())) &amp;gt; ((()))(()()()), (()()()) &amp;gt; (()()())(()()), (()()) &amp;gt; (()())(())(()), (()) &amp;gt; (())()()()()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Fractran ==&lt;br /&gt;
&lt;br /&gt;
=== [[Fractran]] ===&lt;br /&gt;
Maximum number of instructions applied by a fractran program of size n before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBf(10)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;[729/2, 1/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(11)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;[27/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(12)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(13)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(14)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;[243/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(15)&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 25/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(16)&lt;br /&gt;
|53&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 125/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(17)&lt;br /&gt;
|107&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 40/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(18)&lt;br /&gt;
|211&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 80/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(19)&lt;br /&gt;
|370&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 160/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(20)&lt;br /&gt;
|746&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 22/3, 6/77, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(21)&lt;br /&gt;
|31,957,632&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 4/3, 27/14, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.146 \times 10^{62}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/12, 9/10, 14/3, 11/2, 5/7, 3/11]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Brainfuck ==&lt;br /&gt;
&lt;br /&gt;
=== Brainfuck ===&lt;br /&gt;
Maximum number of instructions read by a brainfuck program with n instructions (uses &amp;lt;code&amp;gt;+-&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols). Cells size are unbounded and can have negative values.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;++++++&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[-]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(8)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;+++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(9)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(10)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;+++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(11)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;+[[&amp;gt;]-&amp;lt;+&amp;lt;+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Boolfuck ===&lt;br /&gt;
Maximum number of instructions read by a boolfuck program with n instructions (uses &amp;lt;code&amp;gt;*&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(10)&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(11)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(12)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(13)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(14)&lt;br /&gt;
|58&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+[&amp;lt;+&amp;lt;+[&amp;gt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(17)&lt;br /&gt;
|109&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(19)&lt;br /&gt;
|112&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(20)&lt;br /&gt;
|180&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(22)&lt;br /&gt;
|183&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(23)&lt;br /&gt;
|269&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BitChanger ===&lt;br /&gt;
Maximum number of instructions read by a bitchanger program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;}[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(9)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(10)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(11)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(12)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitter ===&lt;br /&gt;
Maximum number of instructions read by a bitter program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(11)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(12)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Minsky machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Register machine|Minsky machines]] ===&lt;br /&gt;
Maximum number of steps done by a Minsky machine before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|MBB(1)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;0+*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(2)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(3)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0+C_0-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(4)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1+C_0-BD_1-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;0-DB_0+C_1-ED_1+A_1-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(6)&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1-FC_1+D_0-CE_0+A_1-A*&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Turing_Completeness&amp;diff=5892</id>
		<title>User:Azerty/Turing Completeness</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Turing_Completeness&amp;diff=5892"/>
		<updated>2025-12-29T12:40:55Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* Turing-complete systems */ Added more problems.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of systems that are Turing-complete.&lt;br /&gt;
&lt;br /&gt;
To be Turing-complete, a system must have unbounded memory, access to that memory, and loops that can repeat forever.&lt;br /&gt;
&lt;br /&gt;
== Turing-complete systems ==&lt;br /&gt;
&lt;br /&gt;
* Turing machines with 2 symbols and a blank tape&lt;br /&gt;
* Turing machines with 2 states and a blank tape&lt;br /&gt;
* Turing machines with 15 states and 2 symbols&lt;br /&gt;
* Turing machines with 9 states and 3 symbols&lt;br /&gt;
* Turing machines with 6 states and 4 symbols&lt;br /&gt;
* Turing machines with 5 states and 5 symbols&lt;br /&gt;
* Turing machines with 4 states and 6 symbols&lt;br /&gt;
* Turing machines with 3 states and 9 symbols&lt;br /&gt;
* Turing machines with 2 states and 18 symbols&lt;br /&gt;
* Turing machines with 24 instructions&lt;br /&gt;
&lt;br /&gt;
== Open problems about Turing-completenesss ==&lt;br /&gt;
&lt;br /&gt;
* Turing machines with minimum states and symbols count&lt;br /&gt;
* Turing machines with minimum instructions count&lt;br /&gt;
* Turing machines with minimum move left transitions count&lt;br /&gt;
* Turing machines with minimum states with 2 defined transitions and 2 symbols count&lt;br /&gt;
* Turing machines with minimum symbols with 2 defined transitions and 2 states count&lt;br /&gt;
* Turing machines with 2 symbols and a blank tape but each state must write the same symbol&lt;br /&gt;
* Turing machines with 2 symbols and a blank tape but each state must move in the same direction&lt;br /&gt;
* Turing machines with 2 states and a blank tape but each symbol must write the same symbol&lt;br /&gt;
* Turing machines with 2 states and a blank tape but each symbol must move in the same direction&lt;br /&gt;
* Turing machines with 2 states and a blank tape but each symbol must go to the same state&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5891</id>
		<title>User:Azerty/Busy Beaver Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5891"/>
		<updated>2025-12-29T12:22:05Z</updated>

		<summary type="html">&lt;p&gt;Azerty: /* Classic */ New BB(5,2,1) champion!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of Busy Beaver functions for Turing machines and other simple Turing-complete systems and their current lower bounds.&lt;br /&gt;
&lt;br /&gt;
I only add functions that follow the requirements below:&lt;br /&gt;
&lt;br /&gt;
* The function must grow uncomputably fast, like BB(n).&lt;br /&gt;
* The function must not have similar champions to other function, like Σ(n).&lt;br /&gt;
* The function must not be arbitrary complex.&lt;br /&gt;
&lt;br /&gt;
== Turing machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver Functions|Classic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2)|BB(2,2)]]&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,3,1)&lt;br /&gt;
|14&lt;br /&gt;
|{{TM|0RB---1LB_1LA2RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3)|BB(3,2)]]&lt;br /&gt;
|21&lt;br /&gt;
|{{TM|1RB---_1LB0RC_1LC1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,3)]]&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(4,2,1)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB---_1LB0LC_1RD1LD_0RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,2)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB---0RC_2LC------_2RC0LC1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4)|BB(4,2)]]&lt;br /&gt;
|107&lt;br /&gt;
|{{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,4,1)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(5,2,1)&lt;br /&gt;
|242&lt;br /&gt;
|{{TM|1RB0LA_1RC0LA_1LD0RE_---1LA_---0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,4)]]&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,1)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA_1LC1LA2RB_---1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(5)|BB(5,2)]]&lt;br /&gt;
|47,176,870&lt;br /&gt;
|{{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(6,2,1)&lt;br /&gt;
|17,397,627,083&lt;br /&gt;
|{{TM|1RB0LA_1RC1RD_1LB1RA_---0RE_1LF0RC_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;1.191 \times 10^{17}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,5)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,6)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10^{10^{115}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3RB5RA1LB5LA2LB_2LA2RA4RB---3LB2LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(6)|BB(6,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_1RC---_1LD0RF_1RA0LE_0LD1RC_1RA0RE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10^{28}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(7)|BB(7,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{11} 10 \uparrow^{10} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LC1LF_1RD0LB_1RA1LE_---0LC_1RG1LD_0RG0RF|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,4)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(9,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega(10 \uparrow^{7} 10 \uparrow^{7} 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_1LB0LH|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,5)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(10,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(11,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(12,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(15,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(16,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,7)]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Instruction-Limited Busy Beaver|Instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(5)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(6)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(7)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(9)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(29)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(31)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turing machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB---2RB_2LB2RA0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2,1)&lt;br /&gt;
|11&lt;br /&gt;
|{{TM|1RB---_0RC0RB_1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|0RB0LB_0RC1RC_1LA0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB0RA0RB_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4,1)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB3RA0RB0RA_2LA2RB1LB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4)&lt;br /&gt;
|49&lt;br /&gt;
|{{TM|1RB2RA2RB2LA_2LB0RA3RB0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2,1)&lt;br /&gt;
|55&lt;br /&gt;
|{{TM|0RB---_1RC0LD_1RD1RB_1LB0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2)&lt;br /&gt;
|63&lt;br /&gt;
|{{TM|0RB0LD_0RC1LC_0RD1LA_1LB1RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(5,2,1)&lt;br /&gt;
|70&lt;br /&gt;
|{{TM|0RB---_0RC1LC_1RD0RE_1RE1RD_1LE1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3,2)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3)&lt;br /&gt;
|202&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,3,2)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turing machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBti(3)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(4)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(5)&lt;br /&gt;
|18&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(6)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB------_1RC------_1RD------_2LD2RD0RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(7)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(8)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function|Blanking]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2,1)&lt;br /&gt;
|16&lt;br /&gt;
|{{TM|1RB---_1LC0LC_1RC0LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3,1)&lt;br /&gt;
|22&lt;br /&gt;
|{{TM|1RB2LB---_2LA0RB1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2)&lt;br /&gt;
|34&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2,1)&lt;br /&gt;
|169&lt;br /&gt;
|{{TM|1RB---_0RC0LA_1LC1LD_0RB0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,2)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,1)&lt;br /&gt;
|308&lt;br /&gt;
|{{TM|1RB1RC---_1LB1RA2RB_0RB2LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2)&lt;br /&gt;
|32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5,2)&lt;br /&gt;
|32,810,047&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6,2)&lt;br /&gt;
|65,538,549&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function#Instruction-limited Blanking Busy Beaver (BLBi(n))|Blanking instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2)&lt;br /&gt;
|19&lt;br /&gt;
|{{TM|1RB1RA_0RC---_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2,1)&lt;br /&gt;
|32&lt;br /&gt;
|{{TM|1RB---_1LC---_0LD0LC_1RD0RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2,1)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2)&lt;br /&gt;
|219&lt;br /&gt;
|{{TM|1RB1RE_0LC1LC_1RA1RD_1LD0LB_0RC---}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(5)&lt;br /&gt;
|23&lt;br /&gt;
|{{TM|1RB------_0RC------_1LC2LB0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(6)&lt;br /&gt;
|66&lt;br /&gt;
|{{TM|1RB------_1LB0LC---_1RC2RA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(7)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(8)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(9)&lt;br /&gt;
|219&lt;br /&gt;
|{{TM|1RB1RE_0LC1LC_1RA1RD_1LD0LB_0RC---}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Reversible Turing Machine|Reversible]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol reversible Turing machine with k+1 instructions transitions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|0RB---_1LA1RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|0RB---_0LC1RA_1RB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(4,2)&lt;br /&gt;
|48&lt;br /&gt;
|{{TM|1RB0LD_0LC0RB_1LA1LD_1LC---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(5,2)&lt;br /&gt;
|388&lt;br /&gt;
|{{TM|1RB0RD_1RC0RB_1RD---_1LE1LA_0LE0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(6,2)&lt;br /&gt;
|537,556&lt;br /&gt;
|{{TM|1RB1LD_1LC1RE_0LD0LC_0RE0RF_0RA---_1RF1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(7,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{19}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LD_0LC0LD_1LC1LA_0LA1RE_0RF0RE_0RG1RF_0RB---|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Maximum Consecutive Ones Function|Consecutive ones]] ===&lt;br /&gt;
Maximum number of consecutive 1s left on the tape by a n-state, m-symbol Turing machine with k+1 undefined instructions after halting. TMs must leave all their 1s consecutively.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2,1)&lt;br /&gt;
|2&lt;br /&gt;
|{{TM|1RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LC_1RC---_1LA0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,3)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB0LA_1RC1LB_1LB1RD_---0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,3)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB1RA---_1LC1LC2LA_2RA1LB1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(5,2)&lt;br /&gt;
|165&lt;br /&gt;
|{{TM|1RB1LA_1RC1LE_1RD1RE_0LA1RC_---0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler preperiod|Preperiodic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before turning into a translated cycler.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB---_1LB0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0LB_1LA0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(3,2)&lt;br /&gt;
|101&lt;br /&gt;
|{{TM|1RB1LB_0RC0LA_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(4,2)&lt;br /&gt;
|119,120,230,102&lt;br /&gt;
|{{TM|1RB1LC_0LA1RD_0RB0LC_1LA0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;2 \times 10^{23}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA1RA1LB_0LB2RB3RB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|&amp;lt;math&amp;gt;5.418 \times 10^{51}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{14,006}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_0LC0LB_0LD1LC_1RD1RA_0RC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0LB2LA_1LA0RC0LB_2RC2RB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler period|Periodic]] ===&lt;br /&gt;
Maximum translated cycler period done by a n-state, m-symbol Turing Machine with k undefined instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0RB_1LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,2)&lt;br /&gt;
|92&lt;br /&gt;
|{{TM|1RB0LA_0RC1LA_1LC0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|1,195&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,4)&lt;br /&gt;
|33,209,131&lt;br /&gt;
|{{TM|1RB0RA3LB1RB_2LA0LB1RA2RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(4,2)&lt;br /&gt;
|212,081,736&lt;br /&gt;
|{{TM|1RB0LA_0RC1RD_1LD0RB_1LA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|8,468,569,863&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Turing machine variations ==&lt;br /&gt;
&lt;br /&gt;
=== [[Terminating Turmite|Turmite]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k+1 undefined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2,1)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PC0PB_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0PC_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2,1)&lt;br /&gt;
|139&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PD0TC_---0TA_1TA1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3,1)&lt;br /&gt;
|683&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA---_1PC1PB0TC_2PA1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2)&lt;br /&gt;
|758&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_0PD1PB_1PA1TA_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,4)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite instructions ===&lt;br /&gt;
Maximum number of steps done by a Turmite machine with n defined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTi(2)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(3)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(4)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(5)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(7)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(8)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turmite machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_1TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2TB---_1TA0PB0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1PC1TC_1TB0PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB0PC_1PC0TA_1TB1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4,1)&lt;br /&gt;
|44&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PB0PB---_2TB2TA3TA1TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2,1)&lt;br /&gt;
|48&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PC_0TB1TD_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,2)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3)&lt;br /&gt;
|134&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PC2TB_1TC0TA0PB_2TC1TA2TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2)&lt;br /&gt;
|166&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_0PC0TA_0PD0PB_1TB1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turmite machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTti(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(4)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_1TC1PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(5)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_0PD---_1TC0TD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(6)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(7)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(8)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2,1)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PC0TC_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2,1)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2)&lt;br /&gt;
|267&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TD_1PC0PA_0PA0TD_1PD0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,4)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,3)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(3)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(4)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(6)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(8)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(9)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol turmite machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2,1)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PC_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PC0PA_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2,1)&lt;br /&gt;
|30&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_1PD0PC_0PA---_0PB---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(3)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(4)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(5)&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TA_2PB0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(6)&lt;br /&gt;
|36&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TC_2PB0PA---_0TB------&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(7)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Lambda calculus ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for SKI calculus#SK calculus|SK calculus]] ===&lt;br /&gt;
Maximum normal form size of any closed SK term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;SSSS&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(6)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(7)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(S(SKS))S&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BCKW calculus ===&lt;br /&gt;
Maximum normal form size of any closed BCKW term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;BBB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(4)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(5)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BBB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(6)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(7)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BBB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(WB(BB)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for lambda calculus#De Bruijn|De Bruijn]] ===&lt;br /&gt;
Maximum normal form size of any closed lambda term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBL(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(9)&lt;br /&gt;
|68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(10)&lt;br /&gt;
|&amp;lt;math&amp;gt;7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(12)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(13)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(15)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^2}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\1 (\\1 2 1) 2 1) (\1 1) 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(24)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^2}(27)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\1 (\\1 2 1) 2 1) (\1 1) 1) 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(25)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(26)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(27)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(10^{12})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(28)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(10^{10^{12}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(34)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^\omega}}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 3 2 1) (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tag system ==&lt;br /&gt;
&lt;br /&gt;
=== 2-tag system ===&lt;br /&gt;
Maximum number of transformations performed with a 2-tag system of size n. Its size if the sum of the number of letters and the number of different letters.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(4)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(5)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(6)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(7)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(8)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(9)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(11)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(12)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bc, a, aaa&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Cyclic tag ===&lt;br /&gt;
Maximum number of transformations that can be done with a cyclic tag system of size n. Its size if the sum of the number of bits and the number of instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(6)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(7)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(9)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(10)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 0000&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tree rewriting ===&lt;br /&gt;
Maximum number of transformations that can be done with a tree rewriting system of size n. Its size if the number of brackets.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: () P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(4)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(5)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(8)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(14)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()(()) P: (()) &amp;gt; ((())), ()()() &amp;gt; _, () &amp;gt; ()()&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(23)&lt;br /&gt;
|672&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: ()() &amp;gt; (()())(), ()() &amp;gt; ()()(()), () &amp;gt; (()), (((()))) &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(38)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 10 \uparrow 54&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: (())(()()) P: (()()) &amp;gt; (()())(()), (()()) &amp;gt; (()())(()), ()(()) &amp;gt; (())((())), ((())) &amp;gt; ((()))()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(45)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 130&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((())) P: ((())) &amp;gt; ((()))(()()), (()()) &amp;gt; (()())(()), (()) &amp;gt; (())(()()()), (()()()) &amp;gt; (()()())()(), ()()() &amp;gt; _, () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(69)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((()())) P: ((()())) &amp;gt; ((()()))((())), ((())) &amp;gt; ((()))(()()()), ((())) &amp;gt; ((()))(()()()), (()()()) &amp;gt; (()()())(()()), (()()) &amp;gt; (()())(())(()), (()) &amp;gt; (())()()()()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Fractran ==&lt;br /&gt;
&lt;br /&gt;
=== [[Fractran]] ===&lt;br /&gt;
Maximum number of instructions applied by a fractran program of size n before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBf(10)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;[729/2, 1/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(11)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;[27/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(12)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(13)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(14)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;[243/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(15)&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 25/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(16)&lt;br /&gt;
|53&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 125/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(17)&lt;br /&gt;
|107&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 40/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(18)&lt;br /&gt;
|211&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 80/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(19)&lt;br /&gt;
|370&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 160/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(20)&lt;br /&gt;
|746&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 22/3, 6/77, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(21)&lt;br /&gt;
|31,957,632&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 4/3, 27/14, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.146 \times 10^{62}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/12, 9/10, 14/3, 11/2, 5/7, 3/11]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Brainfuck ==&lt;br /&gt;
&lt;br /&gt;
=== Brainfuck ===&lt;br /&gt;
Maximum number of instructions read by a brainfuck program with n instructions (uses &amp;lt;code&amp;gt;+-&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols). Cells size are unbounded and can have negative values.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;++++++&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[-]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(8)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;+++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(9)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(10)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;+++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(11)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;+[[&amp;gt;]-&amp;lt;+&amp;lt;+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Boolfuck ===&lt;br /&gt;
Maximum number of instructions read by a boolfuck program with n instructions (uses &amp;lt;code&amp;gt;*&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(10)&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(11)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(12)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(13)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(14)&lt;br /&gt;
|58&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+[&amp;lt;+&amp;lt;+[&amp;gt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(17)&lt;br /&gt;
|109&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(19)&lt;br /&gt;
|112&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(20)&lt;br /&gt;
|180&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(22)&lt;br /&gt;
|183&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(23)&lt;br /&gt;
|269&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BitChanger ===&lt;br /&gt;
Maximum number of instructions read by a bitchanger program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;}[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(9)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(10)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(11)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(12)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitter ===&lt;br /&gt;
Maximum number of instructions read by a bitter program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(11)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(12)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Minsky machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Register machine|Minsky machines]] ===&lt;br /&gt;
Maximum number of steps done by a Minsky machine before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|MBB(1)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;0+*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(2)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(3)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0+C_0-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(4)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1+C_0-BD_1-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;0-DB_0+C_1-ED_1+A_1-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(6)&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1-FC_1+D_0-CE_0+A_1-A*&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5884</id>
		<title>User:Azerty/Busy Beaver Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5884"/>
		<updated>2025-12-29T09:27:33Z</updated>

		<summary type="html">&lt;p&gt;Azerty: Added Turmite restricted move per state function.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of Busy Beaver functions for Turing machines and other simple Turing-complete systems and their current lower bounds.&lt;br /&gt;
&lt;br /&gt;
I only add functions that follow the requirements below:&lt;br /&gt;
&lt;br /&gt;
* The function must grow uncomputably fast, like BB(n).&lt;br /&gt;
* The function must not have similar champions to other function, like Σ(n).&lt;br /&gt;
* The function must not be arbitrary complex.&lt;br /&gt;
&lt;br /&gt;
== Turing machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver Functions|Classic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2)|BB(2,2)]]&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,3,1)&lt;br /&gt;
|14&lt;br /&gt;
|{{TM|0RB---1LB_1LA2RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3)|BB(3,2)]]&lt;br /&gt;
|21&lt;br /&gt;
|{{TM|1RB---_1LB0RC_1LC1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,3)]]&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(4,2,1)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB---_1LB0LC_1RD1LD_0RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,2)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB---0RC_2LC------_2RC0LC1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4)|BB(4,2)]]&lt;br /&gt;
|107&lt;br /&gt;
|{{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,4,1)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(5,2,1)&lt;br /&gt;
|197&lt;br /&gt;
|{{TM|1RB---_1LC0RB_0LD1LD_0LE---_0RA1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,4)]]&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,1)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA_1LC1LA2RB_---1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(5)|BB(5,2)]]&lt;br /&gt;
|47,176,870&lt;br /&gt;
|{{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(6,2,1)&lt;br /&gt;
|17,397,627,083&lt;br /&gt;
|{{TM|1RB0LA_1RC1RD_1LB1RA_---0RE_1LF0RC_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;1.191 \times 10^{17}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,5)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,6)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10^{10^{115}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3RB5RA1LB5LA2LB_2LA2RA4RB---3LB2LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(6)|BB(6,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_1RC---_1LD0RF_1RA0LE_0LD1RC_1RA0RE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10^{28}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(7)|BB(7,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{11} 10 \uparrow^{10} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LC1LF_1RD0LB_1RA1LE_---0LC_1RG1LD_0RG0RF|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,4)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(9,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega(10 \uparrow^{7} 10 \uparrow^{7} 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_1LB0LH|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,5)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(10,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(11,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(12,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(15,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(16,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,7)]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Instruction-Limited Busy Beaver|Instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(5)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(6)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(7)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(9)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(29)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(31)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turing machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB---2RB_2LB2RA0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2,1)&lt;br /&gt;
|11&lt;br /&gt;
|{{TM|1RB---_0RC0RB_1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|0RB0LB_0RC1RC_1LA0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB0RA0RB_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4,1)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB3RA0RB0RA_2LA2RB1LB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4)&lt;br /&gt;
|49&lt;br /&gt;
|{{TM|1RB2RA2RB2LA_2LB0RA3RB0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2,1)&lt;br /&gt;
|55&lt;br /&gt;
|{{TM|0RB---_1RC0LD_1RD1RB_1LB0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2)&lt;br /&gt;
|63&lt;br /&gt;
|{{TM|0RB0LD_0RC1LC_0RD1LA_1LB1RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(5,2,1)&lt;br /&gt;
|70&lt;br /&gt;
|{{TM|0RB---_0RC1LC_1RD0RE_1RE1RD_1LE1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3,2)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3)&lt;br /&gt;
|202&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,3,2)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turing machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBti(3)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(4)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(5)&lt;br /&gt;
|18&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(6)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB------_1RC------_1RD------_2LD2RD0RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(7)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(8)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function|Blanking]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2,1)&lt;br /&gt;
|16&lt;br /&gt;
|{{TM|1RB---_1LC0LC_1RC0LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3,1)&lt;br /&gt;
|22&lt;br /&gt;
|{{TM|1RB2LB---_2LA0RB1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2)&lt;br /&gt;
|34&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2,1)&lt;br /&gt;
|169&lt;br /&gt;
|{{TM|1RB---_0RC0LA_1LC1LD_0RB0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,2)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,1)&lt;br /&gt;
|308&lt;br /&gt;
|{{TM|1RB1RC---_1LB1RA2RB_0RB2LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2)&lt;br /&gt;
|32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5,2)&lt;br /&gt;
|32,810,047&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6,2)&lt;br /&gt;
|65,538,549&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function#Instruction-limited Blanking Busy Beaver (BLBi(n))|Blanking instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2)&lt;br /&gt;
|19&lt;br /&gt;
|{{TM|1RB1RA_0RC---_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2,1)&lt;br /&gt;
|32&lt;br /&gt;
|{{TM|1RB---_1LC---_0LD0LC_1RD0RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2,1)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2)&lt;br /&gt;
|219&lt;br /&gt;
|{{TM|1RB1RE_0LC1LC_1RA1RD_1LD0LB_0RC---}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(5)&lt;br /&gt;
|23&lt;br /&gt;
|{{TM|1RB------_0RC------_1LC2LB0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(6)&lt;br /&gt;
|66&lt;br /&gt;
|{{TM|1RB------_1LB0LC---_1RC2RA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(7)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(8)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(9)&lt;br /&gt;
|219&lt;br /&gt;
|{{TM|1RB1RE_0LC1LC_1RA1RD_1LD0LB_0RC---}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Reversible Turing Machine|Reversible]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol reversible Turing machine with k+1 instructions transitions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|0RB---_1LA1RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|0RB---_0LC1RA_1RB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(4,2)&lt;br /&gt;
|48&lt;br /&gt;
|{{TM|1RB0LD_0LC0RB_1LA1LD_1LC---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(5,2)&lt;br /&gt;
|388&lt;br /&gt;
|{{TM|1RB0RD_1RC0RB_1RD---_1LE1LA_0LE0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(6,2)&lt;br /&gt;
|537,556&lt;br /&gt;
|{{TM|1RB1LD_1LC1RE_0LD0LC_0RE0RF_0RA---_1RF1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(7,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{19}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LD_0LC0LD_1LC1LA_0LA1RE_0RF0RE_0RG1RF_0RB---|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Maximum Consecutive Ones Function|Consecutive ones]] ===&lt;br /&gt;
Maximum number of consecutive 1s left on the tape by a n-state, m-symbol Turing machine with k+1 undefined instructions after halting. TMs must leave all their 1s consecutively.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2,1)&lt;br /&gt;
|2&lt;br /&gt;
|{{TM|1RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LC_1RC---_1LA0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,3)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB0LA_1RC1LB_1LB1RD_---0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,3)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB1RA---_1LC1LC2LA_2RA1LB1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(5,2)&lt;br /&gt;
|165&lt;br /&gt;
|{{TM|1RB1LA_1RC1LE_1RD1RE_0LA1RC_---0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler preperiod|Preperiodic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before turning into a translated cycler.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB---_1LB0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0LB_1LA0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(3,2)&lt;br /&gt;
|101&lt;br /&gt;
|{{TM|1RB1LB_0RC0LA_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(4,2)&lt;br /&gt;
|119,120,230,102&lt;br /&gt;
|{{TM|1RB1LC_0LA1RD_0RB0LC_1LA0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;2 \times 10^{23}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA1RA1LB_0LB2RB3RB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|&amp;lt;math&amp;gt;5.418 \times 10^{51}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{14,006}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_0LC0LB_0LD1LC_1RD1RA_0RC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0LB2LA_1LA0RC0LB_2RC2RB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler period|Periodic]] ===&lt;br /&gt;
Maximum translated cycler period done by a n-state, m-symbol Turing Machine with k undefined instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0RB_1LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,2)&lt;br /&gt;
|92&lt;br /&gt;
|{{TM|1RB0LA_0RC1LA_1LC0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|1,195&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,4)&lt;br /&gt;
|33,209,131&lt;br /&gt;
|{{TM|1RB0RA3LB1RB_2LA0LB1RA2RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(4,2)&lt;br /&gt;
|212,081,736&lt;br /&gt;
|{{TM|1RB0LA_0RC1RD_1LD0RB_1LA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|8,468,569,863&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Turing machine variations ==&lt;br /&gt;
&lt;br /&gt;
=== [[Terminating Turmite|Turmite]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k+1 undefined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2,1)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PC0PB_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0PC_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2,1)&lt;br /&gt;
|139&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PD0TC_---0TA_1TA1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3,1)&lt;br /&gt;
|683&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA---_1PC1PB0TC_2PA1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2)&lt;br /&gt;
|758&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_0PD1PB_1PA1TA_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,4)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite instructions ===&lt;br /&gt;
Maximum number of steps done by a Turmite machine with n defined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTi(2)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(3)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(4)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(5)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(7)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(8)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turmite machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_1TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2TB---_1TA0PB0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1PC1TC_1TB0PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB0PC_1PC0TA_1TB1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4,1)&lt;br /&gt;
|44&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PB0PB---_2TB2TA3TA1TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2,1)&lt;br /&gt;
|48&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PC_0TB1TD_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,2)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3)&lt;br /&gt;
|134&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PC2TB_1TC0TA0PB_2TC1TA2TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2)&lt;br /&gt;
|166&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_0PC0TA_0PD0PB_1TB1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turmite machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTti(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(4)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_1TC1PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(5)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_0PD---_1TC0TD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(6)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(7)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(8)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2,1)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PC0TC_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2,1)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2)&lt;br /&gt;
|267&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TD_1PC0PA_0PA0TD_1PD0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,4)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,3)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(3)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(4)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(6)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(8)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(9)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol turmite machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(2,2)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2,1)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PC_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(3,2)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PC0PA_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2,1)&lt;br /&gt;
|30&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_1PD0PC_0PA---_0PB---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTms(4,2)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(3)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_---0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(4)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(5)&lt;br /&gt;
|26&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TA_2PB0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(6)&lt;br /&gt;
|36&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB0TC_2PB0PA---_0TB------&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTmsi(7)&lt;br /&gt;
|247&lt;br /&gt;
|&amp;lt;code&amp;gt;1TA1TB_0PD0PC_0PA0PB_0PC---&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Lambda calculus ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for SKI calculus#SK calculus|SK calculus]] ===&lt;br /&gt;
Maximum normal form size of any closed SK term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;SSSS&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(6)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(7)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(S(SKS))S&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BCKW calculus ===&lt;br /&gt;
Maximum normal form size of any closed BCKW term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;BBB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(4)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(5)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BBB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(6)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(7)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BBB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(WB(BB)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for lambda calculus#De Bruijn|De Bruijn]] ===&lt;br /&gt;
Maximum normal form size of any closed lambda term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBL(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(9)&lt;br /&gt;
|68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(10)&lt;br /&gt;
|&amp;lt;math&amp;gt;7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(12)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(13)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(15)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^2}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\1 (\\1 2 1) 2 1) (\1 1) 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(24)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^2}(27)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\1 (\\1 2 1) 2 1) (\1 1) 1) 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(25)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(26)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(27)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(10^{12})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(28)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(10^{10^{12}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(34)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^\omega}}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 3 2 1) (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tag system ==&lt;br /&gt;
&lt;br /&gt;
=== 2-tag system ===&lt;br /&gt;
Maximum number of transformations performed with a 2-tag system of size n. Its size if the sum of the number of letters and the number of different letters.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(4)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(5)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(6)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(7)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(8)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(9)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(11)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(12)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bc, a, aaa&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Cyclic tag ===&lt;br /&gt;
Maximum number of transformations that can be done with a cyclic tag system of size n. Its size if the sum of the number of bits and the number of instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(6)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(7)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(9)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(10)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 0000&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tree rewriting ===&lt;br /&gt;
Maximum number of transformations that can be done with a tree rewriting system of size n. Its size if the number of brackets.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: () P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(4)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(5)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(8)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(14)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()(()) P: (()) &amp;gt; ((())), ()()() &amp;gt; _, () &amp;gt; ()()&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(23)&lt;br /&gt;
|672&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: ()() &amp;gt; (()())(), ()() &amp;gt; ()()(()), () &amp;gt; (()), (((()))) &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(38)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 10 \uparrow 54&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: (())(()()) P: (()()) &amp;gt; (()())(()), (()()) &amp;gt; (()())(()), ()(()) &amp;gt; (())((())), ((())) &amp;gt; ((()))()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(45)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 130&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((())) P: ((())) &amp;gt; ((()))(()()), (()()) &amp;gt; (()())(()), (()) &amp;gt; (())(()()()), (()()()) &amp;gt; (()()())()(), ()()() &amp;gt; _, () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(69)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((()())) P: ((()())) &amp;gt; ((()()))((())), ((())) &amp;gt; ((()))(()()()), ((())) &amp;gt; ((()))(()()()), (()()()) &amp;gt; (()()())(()()), (()()) &amp;gt; (()())(())(()), (()) &amp;gt; (())()()()()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Fractran ==&lt;br /&gt;
&lt;br /&gt;
=== [[Fractran]] ===&lt;br /&gt;
Maximum number of instructions applied by a fractran program of size n before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBf(10)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;[729/2, 1/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(11)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;[27/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(12)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(13)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(14)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;[243/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(15)&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 25/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(16)&lt;br /&gt;
|53&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 125/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(17)&lt;br /&gt;
|107&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 40/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(18)&lt;br /&gt;
|211&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 80/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(19)&lt;br /&gt;
|370&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 160/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(20)&lt;br /&gt;
|746&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 22/3, 6/77, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(21)&lt;br /&gt;
|31,957,632&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 4/3, 27/14, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.146 \times 10^{62}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/12, 9/10, 14/3, 11/2, 5/7, 3/11]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Brainfuck ==&lt;br /&gt;
&lt;br /&gt;
=== Brainfuck ===&lt;br /&gt;
Maximum number of instructions read by a brainfuck program with n instructions (uses &amp;lt;code&amp;gt;+-&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols). Cells size are unbounded and can have negative values.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;++++++&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[-]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(8)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;+++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(9)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(10)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;+++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(11)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;+[[&amp;gt;]-&amp;lt;+&amp;lt;+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Boolfuck ===&lt;br /&gt;
Maximum number of instructions read by a boolfuck program with n instructions (uses &amp;lt;code&amp;gt;*&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(10)&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(11)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(12)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(13)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(14)&lt;br /&gt;
|58&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+[&amp;lt;+&amp;lt;+[&amp;gt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(17)&lt;br /&gt;
|109&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(19)&lt;br /&gt;
|112&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(20)&lt;br /&gt;
|180&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(22)&lt;br /&gt;
|183&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(23)&lt;br /&gt;
|269&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BitChanger ===&lt;br /&gt;
Maximum number of instructions read by a bitchanger program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;}[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(9)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(10)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(11)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(12)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitter ===&lt;br /&gt;
Maximum number of instructions read by a bitter program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(11)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(12)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Minsky machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Register machine|Minsky machines]] ===&lt;br /&gt;
Maximum number of steps done by a Minsky machine before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|MBB(1)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;0+*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(2)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(3)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0+C_0-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(4)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1+C_0-BD_1-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;0-DB_0+C_1-ED_1+A_1-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(6)&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1-FC_1+D_0-CE_0+A_1-A*&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5883</id>
		<title>User:Azerty/Busy Beaver Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty/Busy_Beaver_Functions&amp;diff=5883"/>
		<updated>2025-12-29T09:06:08Z</updated>

		<summary type="html">&lt;p&gt;Azerty: Added restricted move per state BB function.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of Busy Beaver functions for Turing machines and other simple Turing-complete systems and their current lower bounds.&lt;br /&gt;
&lt;br /&gt;
I only add functions that follow the requirements below:&lt;br /&gt;
&lt;br /&gt;
* The function must grow uncomputably fast, like BB(n).&lt;br /&gt;
* The function must not have similar champions to other function, like Σ(n).&lt;br /&gt;
* The function must not be arbitrary complex.&lt;br /&gt;
&lt;br /&gt;
== Turing machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver Functions|Classic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2)|BB(2,2)]]&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,3,1)&lt;br /&gt;
|14&lt;br /&gt;
|{{TM|0RB---1LB_1LA2RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3)|BB(3,2)]]&lt;br /&gt;
|21&lt;br /&gt;
|{{TM|1RB---_1LB0RC_1LC1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,3)]]&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(4,2,1)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB---_1LB0LC_1RD1LD_0RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,2)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB---0RC_2LC------_2RC0LC1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4)|BB(4,2)]]&lt;br /&gt;
|107&lt;br /&gt;
|{{TM|1RB1LB_1LA0LC_---1LD_1RD0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(2,4,1)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(5,2,1)&lt;br /&gt;
|197&lt;br /&gt;
|{{TM|1RB---_1LC0RB_0LD1LD_0LE---_0RA1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,4)]]&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,3,1)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA_1LC1LA2RB_---1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(5)|BB(5,2)]]&lt;br /&gt;
|47,176,870&lt;br /&gt;
|{{TM|1RB1LC_1RC1RB_1RD0LE_1LA1LD_---0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(6,2,1)&lt;br /&gt;
|17,397,627,083&lt;br /&gt;
|{{TM|1RB0LA_1RC1RD_1LB1RA_---0RE_1LF0RC_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;1.191 \times 10^{17}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RB2LA1RA_1LA2RB1RC_---1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,4,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,5)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,6)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10^{10^{115}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3RB5RA1LB5LA2LB_2LA2RA4RB---3LB2LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(6)|BB(6,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 8&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_1RC---_1LD0RF_1RA0LE_0LD1RC_1RA0RE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(4,3)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 10^{28}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(7)|BB(7,2)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{11} 10 \uparrow^{10} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0RA_1LC1LF_1RD0LB_1RA1LE_---0LC_1RG1LD_0RG0RF|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(3,4)]]&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(9,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega(10 \uparrow^{7} 10 \uparrow^{7} 2)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_1LB0LH|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(3,5)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(10,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(11,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(12,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(15,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(16,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|[[BB(2,7)]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Instruction-Limited Busy Beaver|Instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(5)&lt;br /&gt;
|38&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(6)&lt;br /&gt;
|124&lt;br /&gt;
|{{TM|1RB3LA1RA0LA_2LA------3RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(7)&lt;br /&gt;
|3,932,964&lt;br /&gt;
|{{TM|1RB2LA1RA1RA_1LB1LA3RB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;6.889 \times 10^{1,565}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LA------_1RC3LB1RB---_2LA2LC---0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(9)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 3,314,360&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LA4RB0RB2LA_1LB2LA3LA1RA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow^{15} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB---2RA_2LC3RB1LC2RA_3RB1LB3LC2RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BB(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}(10 \uparrow^{15} 4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB3LB4LC2RA4LB_2LC3RB1LC2RA---_3RB1LB3LC2RC4LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(19)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(25)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RA_0LC0LF_0RD1LC_1RA1RG_---0RA_1LB1LF_1LH1RE_0LI1LH_0LF0LJ_1LH0LJ|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(21)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_\omega^2(10 {\uparrow}^{2} 10)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_---0LI_0LD1LE|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega}^4(10 {\uparrow}^{2} 65,534)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0LJ0RF_1LH1RC_0LD0LG_0RE1LD_1RF1RA_1RB1RF_1LC1LG_1LL1LI_1LK0LH_1RH1LJ_---1LA_1RF1LL|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(65,536)&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1LH1LA_1LI1RG_0RD1LC_0RF1RE_1LJ0RF_1RB1RF_0LC1LH_0LC0LA_1LK1LJ_1RL0LI_0LL1LE_1LM---_0LN1LF_0LJ---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(29)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}(f_\omega(10^{57}))&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RH1LD_1RI0RC_1RB1LD_0LD1LE_1LF1RA_1RG0LE_1RB1RG_1RD1RA_0LN0RJ_---0LK_0LK1LL_1RG1LM_0LL0LL_1LO1LN_0LG1LN|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBi(31)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega + 1}^2(10^{10^{57}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|0RG1LD_0RI0RC_1RB1LD_0LD1LE_1LF1RA_1RP0LE_1RD1RA_0LP1LO_1LO1RM_0LJ1LK_1LL1LL_1RP0LK_1LH0RN_---0LJ_1LH1LO_1RB1RP|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turing machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,2)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB---2RB_2LB2RA0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2,1)&lt;br /&gt;
|11&lt;br /&gt;
|{{TM|1RB---_0RC0RB_1LB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|0RB0LB_0RC1RC_1LA0LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,3)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB0RA0RB_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4,1)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB3RA0RB0RA_2LA2RB1LB---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(2,4)&lt;br /&gt;
|49&lt;br /&gt;
|{{TM|1RB2RA2RB2LA_2LB0RA3RB0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2,1)&lt;br /&gt;
|55&lt;br /&gt;
|{{TM|0RB---_1RC0LD_1RD1RB_1LB0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,2)&lt;br /&gt;
|63&lt;br /&gt;
|{{TM|0RB0LD_0RC1LC_0RD1LA_1LB1RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(5,2,1)&lt;br /&gt;
|70&lt;br /&gt;
|{{TM|0RB---_0RC1LC_1RD0RE_1RE1RD_1LE1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3,2)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(3,3)&lt;br /&gt;
|202&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBt(4,3,2)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turing machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBti(3)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_1LB0RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(4)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(5)&lt;br /&gt;
|18&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(6)&lt;br /&gt;
|36&lt;br /&gt;
|{{TM|1RB------_1RC------_1RD------_2LD2RD0RD|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(7)&lt;br /&gt;
|93&lt;br /&gt;
|{{TM|1RB------_0RC0RB1LC_1LB2RC0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBti(8)&lt;br /&gt;
|425&lt;br /&gt;
|{{TM|1RB------_1RC------_0RD0RC1LD_1LC2RD0LC|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function|Blanking]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,2)&lt;br /&gt;
|8&lt;br /&gt;
|{{TM|1RB0RA_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2,1)&lt;br /&gt;
|16&lt;br /&gt;
|{{TM|1RB---_1LC0LC_1RC0LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3,1)&lt;br /&gt;
|22&lt;br /&gt;
|{{TM|1RB2LB---_2LA0RB1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,2)&lt;br /&gt;
|34&lt;br /&gt;
|{{TM|1RB1LB_1LA1LC_1RC0LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,3)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2,1)&lt;br /&gt;
|169&lt;br /&gt;
|{{TM|1RB---_0RC0LA_1LC1LD_0RB0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,2)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(3,3,1)&lt;br /&gt;
|308&lt;br /&gt;
|{{TM|1RB1RC---_1LB1RA2RB_0RB2LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(4,2)&lt;br /&gt;
|32,779,477&lt;br /&gt;
|{{TM|1RB1LD_1RC1RB_1LC1LA_0RC0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(5,2)&lt;br /&gt;
|32,810,047&lt;br /&gt;
|{{TM|1RB1LC_1RD0LE_0RD0RC_1LD1LA_1RB1RE}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(6,2)&lt;br /&gt;
|65,538,549&lt;br /&gt;
|{{TM|1RB1LE_1RD1RB_0RD0RE_1LD1LA_0RF1RF_0LC1LC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLB(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Blanking Busy Beaver Function#Instruction-limited Blanking Busy Beaver (BLBi(n))|Blanking instructions]] ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(3)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB0RA_1LA---}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(4)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB---_1RC---_1LC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(5)&lt;br /&gt;
|30&lt;br /&gt;
|{{TM|1RB------_1RC------_2LC2RC0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(6)&lt;br /&gt;
|77&lt;br /&gt;
|{{TM|1RB2LA0RB_1LA0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(7)&lt;br /&gt;
|173&lt;br /&gt;
|{{TM|1RB------_2RC2RB1LB_2LC2RB0RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BLBi(8)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.367 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2RA1RA2RB_2LB3LA0RB0RA}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k+1 undefined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2,1)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(3,2)&lt;br /&gt;
|19&lt;br /&gt;
|{{TM|1RB1RA_0RC---_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2,1)&lt;br /&gt;
|32&lt;br /&gt;
|{{TM|1RB---_1LC---_0LD0LC_1RD0RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(4,2)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2,1)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBms(5,2)&lt;br /&gt;
|219&lt;br /&gt;
|{{TM|1RB1RE_0LC1LC_1RA1RD_1LD0LB_0RC---}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Restricted move per state instructions ===&lt;br /&gt;
Maximum number of steps done by a Turing machine with n defined instructions before halting. TMs must go to the same direction per state. TMs halt when they are on an undefined transititon.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB_1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(3)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB---_1LB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(4)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|1RB---_0RC---_1LC0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(5)&lt;br /&gt;
|23&lt;br /&gt;
|{{TM|1RB------_0RC------_1LC2LB0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(6)&lt;br /&gt;
|66&lt;br /&gt;
|{{TM|1RB------_1LB0LC---_1RC2RA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(7)&lt;br /&gt;
|75&lt;br /&gt;
|{{TM|1RB0RD_0RC0RA_1LC0LA_0RB---}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(8)&lt;br /&gt;
|87&lt;br /&gt;
|{{TM|1RB1RD_1RC---_1RD0RA_1LE0LD_---0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBmsi(9)&lt;br /&gt;
|219&lt;br /&gt;
|{{TM|1RB1RE_0LC1LC_1RA1RD_1LD0LB_0RC---}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Reversible Turing Machine|Reversible]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol reversible Turing machine with k+1 instructions transitions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|0RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(2,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|0RB---_1LA1RB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(3,2)&lt;br /&gt;
|17&lt;br /&gt;
|{{TM|0RB---_0LC1RA_1RB1LC|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(4,2)&lt;br /&gt;
|48&lt;br /&gt;
|{{TM|1RB0LD_0LC0RB_1LA1LD_1LC---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(5,2)&lt;br /&gt;
|388&lt;br /&gt;
|{{TM|1RB0RD_1RC0RB_1RD---_1LE1LA_0LE0LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(6,2)&lt;br /&gt;
|537,556&lt;br /&gt;
|{{TM|1RB1LD_1LC1RE_0LD0LC_0RE0RF_0RA---_1RF1RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBr(7,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{19}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LD_0LC0LD_1LC1LA_0LA1RE_0RF0RE_0RG1RF_0RB---|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Maximum Consecutive Ones Function|Consecutive ones]] ===&lt;br /&gt;
Maximum number of consecutive 1s left on the tape by a n-state, m-symbol Turing machine with k+1 undefined instructions after halting. TMs must leave all their 1s consecutively.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2,1)&lt;br /&gt;
|2&lt;br /&gt;
|{{TM|1RB---_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB1LB_1LA---|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,2)&lt;br /&gt;
|6&lt;br /&gt;
|{{TM|1RB1LC_1RC---_1LA0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(2,3)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB2LB---_2LA2RB1LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,2)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB0LA_1RC1LB_1LB1RD_---0RA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(3,3)&lt;br /&gt;
|12&lt;br /&gt;
|{{TM|1RB1RA---_1LC1LC2LA_2RA1LB1LA|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(5,2)&lt;br /&gt;
|165&lt;br /&gt;
|{{TM|1RB1LA_1RC1LE_1RD1RE_0LA1RC_---0LB|halt}}&lt;br /&gt;
|-&lt;br /&gt;
|BBn(4,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD1LC_2LB1RB1LC_---1LA1LD_0RB2RA2RD|halt}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler preperiod|Preperiodic]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turing machine with k undefined instructions before turning into a translated cycler.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2,1)&lt;br /&gt;
|4&lt;br /&gt;
|{{TM|1RB---_1LB0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0LB_1LA0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(3,2)&lt;br /&gt;
|101&lt;br /&gt;
|{{TM|1RB1LB_0RC0LA_1LC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(4,2)&lt;br /&gt;
|119,120,230,102&lt;br /&gt;
|{{TM|1RB1LC_0LA1RD_0RB0LC_1LA0RD}}&lt;br /&gt;
|-&lt;br /&gt;
|BBS(2,4)&lt;br /&gt;
|&amp;lt;math&amp;gt;2 \times 10^{23}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB2LA1RA1LB_0LB2RB3RB1LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|&amp;lt;math&amp;gt;5.418 \times 10^{51}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{14,006}&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB1LE_0LC0LB_0LD1LC_1RD1RA_0RC0LA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|{{TM|1RB0LB2LA_1LA0RC0LB_2RC2RB0LC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Non-halting Turing machine#Translated cycler period|Periodic]] ===&lt;br /&gt;
Maximum translated cycler period done by a n-state, m-symbol Turing Machine with k undefined instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|{{TM|1RB---_0LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,2)&lt;br /&gt;
|9&lt;br /&gt;
|{{TM|1RB0RB_1LB1RA}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,2)&lt;br /&gt;
|92&lt;br /&gt;
|{{TM|1RB0LA_0RC1LA_1LC0RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(3,3)&lt;br /&gt;
|1,195&lt;br /&gt;
|{{TM|1RB2RC1LC_0RC0RB1LA_2LA2RC1LB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(2,4)&lt;br /&gt;
|33,209,131&lt;br /&gt;
|{{TM|1RB0RA3LB1RB_2LA0LB1RA2RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(4,2)&lt;br /&gt;
|212,081,736&lt;br /&gt;
|{{TM|1RB0LA_0RC1RD_1LD0RB_1LA1RB}}&lt;br /&gt;
|-&lt;br /&gt;
|BBP(5,2,1)&lt;br /&gt;
|8,468,569,863&lt;br /&gt;
|{{TM|1RB1RD_1LC0RC_1RA1LD_0RE0LB_---1RC}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Turing machine variations ==&lt;br /&gt;
&lt;br /&gt;
=== [[Terminating Turmite|Turmite]] ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k+1 undefined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2,1)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,2)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2,1)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PC0PB_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,2)&lt;br /&gt;
|82&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0PC_1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2,1)&lt;br /&gt;
|139&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PD0TC_---0TA_1TA1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,3)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3,1)&lt;br /&gt;
|683&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA---_1PC1PB0TC_2PA1PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(4,2)&lt;br /&gt;
|758&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_0PD1PB_1PA1TA_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(2,4)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TT(3,3)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite instructions ===&lt;br /&gt;
Maximum number of steps done by a Turmite machine with n defined instructions before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTi(2)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB_1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(3)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB---_1PA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(4)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB------_1PA2PB0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(5)&lt;br /&gt;
|223&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0PA2PA_2PA---1PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(7)&lt;br /&gt;
|1,068&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB3TB2PB---_2TB1PA0PA2TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTi(8)&lt;br /&gt;
|45,153&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB1PA1TA_2TB2PB2PC_---2PA1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape ===&lt;br /&gt;
Maximum number of right steps done by a n-state, m-symbol Turmite machine with k undefined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2,1)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,2)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_1TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2TB---_1TA0PB0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2,1)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1PC1TC_1TB0PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,2)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB0PC_1PC0TA_1TB1TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,3)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4,1)&lt;br /&gt;
|44&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PB0PB---_2TB2TA3TA1TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2,1)&lt;br /&gt;
|48&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PC_0TB1TD_0PC0PD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3,2)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(3,3)&lt;br /&gt;
|134&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB2PC2TB_1TC0TA0PB_2TC1TA2TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(4,2)&lt;br /&gt;
|166&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0TB_0PC0TA_0PD0PB_1TB1TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTt(2,4)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite semi-infinite tape instructions ===&lt;br /&gt;
Maximum number of right steps done by a Turmite machine with n defined instructions on a semi-infinite tape before its head leave the tape. The head starts in the first cell. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTti(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_1TB1PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(4)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_1TC1PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(5)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB---_0PC---_0PD---_1TC0TD&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(6)&lt;br /&gt;
|39&lt;br /&gt;
|&amp;lt;code&amp;gt;2PB1TA1TB_2TA0TA0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(7)&lt;br /&gt;
|70&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---0PB_0PC---1PC_2TC0TA2PC&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTti(8)&lt;br /&gt;
|194&lt;br /&gt;
|&amp;lt;code&amp;gt;0PB2PB3TB0PA_1TB2TB3PB3TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking ===&lt;br /&gt;
Maximum number of steps done by a n-state, m-symbol Turmite machine with k undefined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2,1)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,2)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2,1)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB---_0PC0TC_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,2)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2,1)&lt;br /&gt;
|84&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB1PC_1TA0PA_1PA0TB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,3)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(4,2)&lt;br /&gt;
|267&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TD_1PC0PA_0PA0TD_1PD0PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(2,4)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLT(3,3)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Turmite blanking instructions ===&lt;br /&gt;
Maximum number of steps done by a turmite machine with n defined instructions before blanking the tape again. TMs must write a non-zero symbol on the first step. TMs are disqualified if they halt before blanking the tape.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(3)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TB_0PA---&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(4)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;1PB0PA_1TA0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PB0PA_2TA---0TA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(6)&lt;br /&gt;
|108&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB0TA0PB_2PA2PB0PA&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(8)&lt;br /&gt;
|357&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2TB0TB2PA_3TA2PA0PA3PB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TLTi(9)&lt;br /&gt;
|2,122&lt;br /&gt;
|&amp;lt;code&amp;gt;1TB2PA0TA_1TA0TB2PC_2PB0PA0TC&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Lambda calculus ==&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for SKI calculus#SK calculus|SK calculus]] ===&lt;br /&gt;
Maximum normal form size of any closed SK term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;SSSS&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(6)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(7)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(SSSS)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|SKBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;SSS(S(SKS))S&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BCKW calculus ===&lt;br /&gt;
Maximum normal form size of any closed BCKW term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(3)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;BBB&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(4)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(5)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(BBB)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(6)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(7)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(BBB))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCKWBB(8)&lt;br /&gt;
|23&lt;br /&gt;
|&amp;lt;code&amp;gt;WB(WB(WB(BB)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== [[Busy Beaver for lambda calculus#De Bruijn|De Bruijn]] ===&lt;br /&gt;
Maximum normal form size of any closed lambda term of size n.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBL(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;\1 1 1 1 1 1&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (1 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(9)&lt;br /&gt;
|68&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\\2 (2 (1 2)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(10)&lt;br /&gt;
|&amp;lt;math&amp;gt;7.625 \times 10^{12}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(11)&lt;br /&gt;
|&amp;lt;math&amp;gt;10^{7.625 \times 10^{12}}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(12)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(13)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{2} 6&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (\1 (\\2 (2 1)) 2))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(14)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 10 {\uparrow}^{3} 10 {\uparrow}^{3} 16&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 1) (\1 (\\2 (2 1)) 1)&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(15)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega+1}(10^{10^{19,727}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1) (\1 (1 (\\1 2 (\\2 (2 1)))))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(23)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^2}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\1 (\\1 2 1) 2 1) (\1 1) 1) 1) (\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(24)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^2}(27)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\1 (\\1 2 1) 2 1) (\1 1) 1) 1) (\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(25)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(26)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(27)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(27)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(10^{12})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(28)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^\omega}(10^{10^{12}})&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 1 1 (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 (2 1)))&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBL(34)&lt;br /&gt;
|&amp;lt;math&amp;gt;f_{\omega^{\omega^\omega}}(4)&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;(\1 1 (\\\\1 4 3 2 1) (\\\1 3 2 1) (\\1 2 1) (\1 1) 1) (\\\2 (2 1))&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tag system ==&lt;br /&gt;
&lt;br /&gt;
=== 2-tag system ===&lt;br /&gt;
Maximum number of transformations performed with a 2-tag system of size n. Its size if the sum of the number of letters and the number of different letters.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(4)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(5)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(6)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(7)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(8)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaaa P: a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(9)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(11)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaaaa P: bbb, a&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TTBB(12)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: aaa P: bc, a, aaa&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Cyclic tag ===&lt;br /&gt;
Maximum number of transformations that can be done with a cyclic tag system of size n. Its size if the sum of the number of bits and the number of instructions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(4)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(5)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 0&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(6)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(7)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 00&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(8)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 1111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(9)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 000&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|CTBB(10)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: 11111 P: 0000&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Tree rewriting ===&lt;br /&gt;
Maximum number of transformations that can be done with a tree rewriting system of size n. Its size if the number of brackets.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(2)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: () P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(3)&lt;br /&gt;
|2&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(4)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(5)&lt;br /&gt;
|4&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(8)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()()() P: () &amp;gt; (), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(14)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()(()) P: (()) &amp;gt; ((())), ()()() &amp;gt; _, () &amp;gt; ()()&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(23)&lt;br /&gt;
|672&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ()()()() P: ()() &amp;gt; (()())(), ()() &amp;gt; ()()(()), () &amp;gt; (()), (((()))) &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(38)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 \uparrow 10 \uparrow 10 \uparrow 10 \uparrow 54&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: (())(()()) P: (()()) &amp;gt; (()())(()), (()()) &amp;gt; (()())(()), ()(()) &amp;gt; (())((())), ((())) &amp;gt; ((()))()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(45)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{3} 130&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((())) P: ((())) &amp;gt; ((()))(()()), (()()) &amp;gt; (()())(()), (()) &amp;gt; (())(()()()), (()()()) &amp;gt; (()()())()(), ()()() &amp;gt; _, () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|TRBB(69)&lt;br /&gt;
|&amp;lt;math&amp;gt;10 {\uparrow}^{4} 10 {\uparrow}^{2} 10 {\uparrow}^{2} 4&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;Δ: ((()))((()())) P: ((()())) &amp;gt; ((()()))((())), ((())) &amp;gt; ((()))(()()()), ((())) &amp;gt; ((()))(()()()), (()()()) &amp;gt; (()()())(()()), (()()) &amp;gt; (()())(())(()), (()) &amp;gt; (())()()()()(), () &amp;gt; _&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Fractran ==&lt;br /&gt;
&lt;br /&gt;
=== [[Fractran]] ===&lt;br /&gt;
Maximum number of instructions applied by a fractran program of size n before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BBf(10)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;[729/2, 1/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(11)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;[27/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(12)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 25/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(13)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;[81/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(14)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;[243/2, 125/3, 1/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(15)&lt;br /&gt;
|28&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 25/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(16)&lt;br /&gt;
|53&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/45, 4/5, 3/2, 125/3]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(17)&lt;br /&gt;
|107&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 40/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(18)&lt;br /&gt;
|211&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 80/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(19)&lt;br /&gt;
|370&lt;br /&gt;
|&amp;lt;code&amp;gt;[5/6, 49/2, 3/5, 160/7]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(20)&lt;br /&gt;
|746&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 22/3, 6/77, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(21)&lt;br /&gt;
|31,957,632&lt;br /&gt;
|&amp;lt;code&amp;gt;[7/15, 4/3, 27/14, 5/2, 9/5]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BBf(22)&lt;br /&gt;
|&amp;lt;math&amp;gt;1.146 \times 10^{62}&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;code&amp;gt;[1/12, 9/10, 14/3, 11/2, 5/7, 3/11]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Brainfuck ==&lt;br /&gt;
&lt;br /&gt;
=== Brainfuck ===&lt;br /&gt;
Maximum number of instructions read by a brainfuck program with n instructions (uses &amp;lt;code&amp;gt;+-&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols). Cells size are unbounded and can have negative values.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(6)&lt;br /&gt;
|6&lt;br /&gt;
|&amp;lt;code&amp;gt;++++++&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(7)&lt;br /&gt;
|8&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[-]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(8)&lt;br /&gt;
|12&lt;br /&gt;
|&amp;lt;code&amp;gt;+++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(9)&lt;br /&gt;
|16&lt;br /&gt;
|&amp;lt;code&amp;gt;++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(10)&lt;br /&gt;
|20&lt;br /&gt;
|&amp;lt;code&amp;gt;+++++[--+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BFBB(11)&lt;br /&gt;
|38&lt;br /&gt;
|&amp;lt;code&amp;gt;+[[&amp;gt;]-&amp;lt;+&amp;lt;+]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Boolfuck ===&lt;br /&gt;
Maximum number of instructions read by a boolfuck program with n instructions (uses &amp;lt;code&amp;gt;*&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(10)&lt;br /&gt;
|14&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;*&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(11)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(12)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(13)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;*&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;*[&amp;lt;&amp;lt;&amp;gt;*]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(14)&lt;br /&gt;
|58&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+[&amp;lt;+&amp;lt;+[&amp;gt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(17)&lt;br /&gt;
|109&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(19)&lt;br /&gt;
|112&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(20)&lt;br /&gt;
|180&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(22)&lt;br /&gt;
|183&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BLBB(23)&lt;br /&gt;
|269&lt;br /&gt;
|&amp;lt;code&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+&amp;gt;&amp;gt;+[&amp;gt;&amp;gt;+[&amp;lt;]+&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BitChanger ===&lt;br /&gt;
Maximum number of instructions read by a bitchanger program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;}[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(9)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(10)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(11)&lt;br /&gt;
|21&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BCBB(12)&lt;br /&gt;
|25&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;}}}}}}&amp;lt;[}&amp;lt;&amp;lt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Bitter ===&lt;br /&gt;
Maximum number of instructions read by a bitter program with n instructions (uses &amp;lt;code&amp;gt;&amp;lt;&amp;gt;[]&amp;lt;/code&amp;gt; symbols).&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(7)&lt;br /&gt;
|7&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(8)&lt;br /&gt;
|9&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(9)&lt;br /&gt;
|11&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(10)&lt;br /&gt;
|13&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(11)&lt;br /&gt;
|15&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|BTBB(12)&lt;br /&gt;
|17&lt;br /&gt;
|&amp;lt;code&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;[&amp;lt;]&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Minsky machines ==&lt;br /&gt;
&lt;br /&gt;
=== [[Register machine|Minsky machines]] ===&lt;br /&gt;
Maximum number of steps done by a Minsky machine before halting.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Domain&lt;br /&gt;
!Lower Bound&lt;br /&gt;
!Champion&lt;br /&gt;
|-&lt;br /&gt;
|MBB(1)&lt;br /&gt;
|1&lt;br /&gt;
|&amp;lt;code&amp;gt;0+*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(2)&lt;br /&gt;
|3&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(3)&lt;br /&gt;
|5&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_0+C_0-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(4)&lt;br /&gt;
|10&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1+C_0-BD_1-C*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(5)&lt;br /&gt;
|24&lt;br /&gt;
|&amp;lt;code&amp;gt;0-DB_0+C_1-ED_1+A_1-B*&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|MBB(6)&lt;br /&gt;
|49&lt;br /&gt;
|&amp;lt;code&amp;gt;0+B_1-FC_1+D_0-CE_0+A_1-A*&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
	<entry>
		<id>https://wiki.bbchallenge.org/w/index.php?title=User:Azerty&amp;diff=5876</id>
		<title>User:Azerty</title>
		<link rel="alternate" type="text/html" href="https://wiki.bbchallenge.org/w/index.php?title=User:Azerty&amp;diff=5876"/>
		<updated>2025-12-28T21:09:21Z</updated>

		<summary type="html">&lt;p&gt;Azerty: Added champions zoology link.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I am an amateur interested in computability theory, large numbers and BB functions.&lt;br /&gt;
&lt;br /&gt;
My GitHub repositories:&lt;br /&gt;
&lt;br /&gt;
* [https://azertywastaken.github.io/TuringMachinesSimulator/tm_simulator Turing machines simulator]&lt;br /&gt;
* [https://github.com/AzertyWasTaken/OrdinalNotations Ordinal notations]&lt;br /&gt;
* [https://github.com/AzertyWasTaken/SearchBB Search BB champions script]&lt;br /&gt;
&lt;br /&gt;
My user pages:&lt;br /&gt;
&lt;br /&gt;
* [[User:Azerty/Busy Beaver Functions|List of lower bounds and champions]]&lt;br /&gt;
* [[User:Azerty/Turing Completeness|List of Turing-complete systems]]&lt;br /&gt;
* [[User:Azerty/Champions Zoology|Champions Zoology]]&lt;/div&gt;</summary>
		<author><name>Azerty</name></author>
	</entry>
</feed>