/- Copyright 2025 The Formal Conjectures Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -/ import FormalConjecturesUtil

Erdős Problem 677

Reference: erdosproblems.com/677

namespace Erdos677 open Finset

Erdős expected very few solutions for $M(n, k) = M(m, l)$, where $m \geq n + k$ and $l > 1$. The only solutions he knew were the following.

@[category test, AMS 11] lemma lcmInterval_eq_example1 : lcmInterval 4 3 = lcmInterval 13 2 lcmInterval 3 4 = lcmInterval 19 2 := lcmInterval 4 3 = lcmInterval 13 2 lcmInterval 3 4 = lcmInterval 19 2 All goals completed! 🐙

Denote by $M(n, k)$ the least common multiple of the finite set ${n+1, \dotsc, n+k}$. Is it true that for all $m \geq n + k$, we get $M(m, k) \neq M(n, k)$?

@[category research open, AMS 11] theorem declaration uses 'sorry'erdos_677 : (m n k : ), k > 0 m n + k lcmInterval m k lcmInterval n k := (m n k : ), k > 0 m n + k lcmInterval m k lcmInterval n k All goals completed! 🐙 -- TODO: Add the other statements from the reference.