Reduction of Gilbreath's conjecture to blocks of s and s
ProvedGilbreath.criterionThe reduction underlying all computational work on the conjecture. Suppose that for every row index there are and with such that row begins with and its entries at indices all lie in . Then Gilbreath's conjecture holds: for every .
In words: it suffices that every row of the triangle be reachable from an earlier row that begins with and carries a block of entries in at least as long as the distance to be covered. The hypothesis is exactly what a computation establishes over a finite range; the conjecture is the assertion that it holds for all row indices.
import Definitions.Def_gilbreath_triangle
namespace Gilbreath
theorem criterion
(h : ∀ K : ℕ, ∃ k m : ℕ, 1 ≤ k ∧ k + m = K + 1 ∧ d k 0 = 1 ∧
∀ n, 1 ≤ n → n ≤ m → d k n = 0 ∨ d k n = 2) (K : ℕ) : d (K + 1) 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.
Assume the following about the Gilbreath triangle, whose row is the increasing enumeration of the primes with and whose later rows are :
for every natural number there exist natural numbers and such that , , , and for every with either or .
Under this assumption, the conclusion is that for the given natural number ,
The hypothesis is a single universally quantified statement, assumed for all at once, while the conclusion concerns the one supplied as an argument; since is arbitrary, the statement as a whole says that the hypothesis implies that every row of index at least begins with . Note that the hypothesis permits and , in which case its own content at that is already , so the hypothesis is at least as strong as the conclusion. Nothing is asserted about entries at indices other than of the row , and nothing about row .
Confirmed by the mission captain (proposal self-audit).