Support and strict ordering of canonical consecutive tail list
ProvedErdos390.canonical_tail_list_speccombinatoricsorder-theory
Let . The consecutive range list satisfies:
Preamble
import Mathlib.Data.List.Range import Mathlib.Data.Finset.Interval import Definitions.Def_erdos390_problem open Erdos390
Formal statement
namespace Erdos390
theorem canonical_tail_list_spec (n h : ℕ) :
let L := List.range' (2 * n + 1) h
(∀ x ∈ L, x ∈ factorInterval (2 * n) (2 * n + h)) ∧ L.Pairwise (· < ·) := by sorry
end Erdos390Source
P. Erdős, Some problems in number theory, 1975; Mathlib List.pairwise_lt_range' and List.mem_range'