1RB1LA_0LC0RC_1LE1RD_1RE1RC_1LF0LA_---1LE
1RB1LA_0LC0RC_1LE1RD_1RE1RC_1LF0LA_---1LE (bbch) is a BB(6) Cryptid similar to Space Needle. It was discovered by sheep on 7 April 2026.[1]
Its single-argument-rules have been simulated for 10M iterations without reaching any or .[2]
Analysis by Daniel Yuan
https://discord.com/channels/960643023006490684/1448375857046360094/1490792769483051228
A(m,n) = 1^m E> 1^n So I would say either (0, 0) --> halt (1, n) --> halt (0, n) --> (2, n-1) for n >= 1 (2m, n) --> (3m+n-1, 2) for m >= 1 (2m+1, n) --> (m-1, m+n+3) for m >= 1 or (0, 0) --> halt (1, n) --> halt (0, n+1) --> (2, n) (2m+2, n) --> (3m+n+2, 2) (2m+3, n) --> (m, m+n+4) I like converting this into these rules: (3, 0) --> halt (4, n) --> halt (3, n+1) --> (5, n) (2m-1, n) --> (3m+n-4, 2) for m >= 3 (2m, n) --> (m, m+n+1) for m >= 3 That way we can see the effect of m dividing by 2 We can even reduce this to one number Let A(n) = (n, 2) Start at A(5), (the equivalent of (2, 2) using the original rules), then follow these rules: A(2^k) --> halt A(3*2^k) = (3*2^k, 2) --> (3, 3*(2^k-1)+2+k) --> (3, 3*(2^k)-1+k) --> (5, 3*(2^k)-2+k) --> (3*(2^k)+3+k), 2) --> A(3*2^k+3+k) A((2m-1)*2^k) = ((2m-1)*2^k, 2) --> (2m-1, (2m-1)*(2^k-1)+2+k) --> (m-1+(2m-1)*2^k+k, 2) --> A((2m-1)*2^k+k+m-1) for m >= 3
Analysis by hipparcos
https://discord.com/channels/960643023006490684/1448375857046360094/1490909482493149306
in practice I think we only ever hit the for rule
so I think we can let and write this as the problem:
Let , where and are non-negative integers satisfying .
Now consider the iterated application of the function , . Does there exist a non-negative integer such that equals a power of 2 or 3 times a power of 2?
Non-halting form
As long as it is unknown if 3*2^k is hit, the ultimate mathematical definition of the non-halting problem must include the 3*2^k branch (full proof of the rules and this form was formalized in Lean[3]):
Analysis by Aristotle
After extensive analysis, this theorem appears to be a Collatz-type conjecture — the iteration f is closely related to the map n → (3n-1)/2 on odd numbers,
and proving the orbit from 5 never reaches a power of 2 is analogous in difficulty to proving non-halting in Collatz-like systems.
Key structural lemma even_case_no_pow2: For any even n with 2-adic valuation a ≥ 2 and odd part m ≥ 5, the formula m * 2^a + a + (m-1)/2 is never a power of 2.
The proof uses modular arithmetic: the powers of 2 modulo 2^(a+1)+1 are exactly {±2^k : k = 0..a}, and the target residue 2a-1 is not in this set for a ≥ 2.
Key structural lemma oddPart3_no_pow2: For any a, the expression 3 * 2^a + a + 3 (the odd-part-3 case) is never a power of 2.
This uses bounding: for a ≥ 4, the value lies strictly between 2^(a+1) and 2^(a+2), and small cases are checked directly.
What these lemmas imply: The only "dangerous" inputs — values where f could output a power of 2 — are restricted to two specific infinite families:
Odd n = (2^(k+1)+1)/3 for even k ≥ 4 (via the map n → (3n-1)/2)
Even n with 2-adic valuation exactly 1 and specific odd part (via the a=1 case)