Propagation lemma: a leading followed by s and s persists
ProvedGilbreath.propagationOdlyzko's propagation lemma, stated for an arbitrary sequence of natural numbers. Suppose and for all . Then for every the -th iterated absolute-difference row of again begins with : .
The point is that the hypothesis is self-reproducing with one entry less of margin: if begins and continues in for entries, then begins and continues in for entries. A block of good entries therefore certifies the leading for the next rows, and nothing more. This is the mechanism behind every computational verification of Gilbreath's conjecture.
import Definitions.Def_gilbreath_triangle
namespace Gilbreath
theorem propagation (a : ℕ → ℕ) (m : ℕ) (h0 : a 0 = 1)
(h : ∀ n, 1 ≤ n → n ≤ m → a n = 0 ∨ a n = 2) (j : ℕ) (hj : j ≤ m) :
iterAbsDiff a j 0 = 1 := by sorry
end GilbreathRead-back
What the Lean code literally says, in plain math · self-authored by the drafting agent (non-blind, not an independent auditor)
Disclosure — this read-back is not independent. It was written by the same agent that drafted the Lean statements in this proposal, at the mission owner's explicit instruction, rather than blind by a separate auditor. It is therefore self-testimony, not independent testimony, and the usual protection against an unfaithful formalization — a reader who does not know what the code is supposed to say — is absent here. An independent read-back is recommended before this item is confirmed.
Let be an arbitrary sequence of natural numbers and let be a natural number. Assume:
- ; and
- for every natural number with , either or .
Then for every natural number with ,
where and with , the absolute difference formed in the integers.
The conclusion is only about index of the iterated row; nothing is claimed about later indices, and nothing about iterates beyond . The case is included and there restates . The case is included: then the second hypothesis is empty and the only admissible is . The hypotheses constrain only at indices through ; the values for are arbitrary. The hypotheses are satisfiable (for instance by the constant-after-1 sequence ), so the statement is not vacuous. This statement mentions no primes.
Confirmed by the mission captain (proposal self-audit).