Every row after the primes starts odd and continues even
ProvedGilbreath.head_odd_tail_evenParity structure of the Gilbreath triangle: for every the leading entry is odd and every later entry , , is even. The reason is that is the only even prime, so row starts with the odd number and continues with even gaps, and this parity pattern is reproduced by taking differences. In particular the leading entry of every row after the first is odd, hence nonzero — the conjecture is exactly the assertion that it is never larger than .
import Definitions.Def_gilbreath_triangle
namespace Gilbreath
theorem head_odd_tail_even (k : ℕ) :
Odd (d (k + 1) 0) ∧ ∀ n : ℕ, Even (d (k + 1) (n + 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.
For every natural number , two things hold simultaneously about row of the Gilbreath triangle:
- its entry at index is odd, i.e. for some natural ; and
- for every natural number , its entry at index is even, i.e. is twice a natural number.
Row is the increasing enumeration of the primes with , and . The quantifier over is unrestricted, so the claim covers every row of index at least ; it says nothing about row . Because indices are written as , the second part covers exactly the entries at indices and excludes index . No hypotheses are imposed. Note that counts as even here and that oddness of entails , but no upper bound on any entry is asserted.
Confirmed by the mission captain (proposal self-audit).