Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions FormalConjectures/GreensOpenProblems/7.lean
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,32 @@ See the License for the specific language governing permissions and
limitations under the License.
-/

import FormalConjectures.ErdosProblems.«341»
import FormalConjectures.ErdosProblems.«342»

/-!
# Ben Green's Open Problem 7

Does Ulam's sequence have positive density?
Can one explain the curious Fourier properties of Ulam's sequence?

*References:*
- [Ben Green's Open Problem 7](https://people.maths.ox.ac.uk/greenbj/papers/open-problems.pdf#section.1)
- [erdosproblems.com/341](https://www.erdosproblems.com/341)
- [erdosproblems.com/342](https://www.erdosproblems.com/342)
-/

open Nat Set Filter
open scoped Topology

This file points to the canonical formalization in `FormalConjectures.ErdosProblems.«341»`.
namespace Green7

/--
Does Ulam's sequence have positive density?
-/
@[category research open, AMS 11 42]
theorem green_7.variants.positive_density :
answer(sorry) ↔
∀ a : ℕ → ℕ, Erdos342.IsUlamSequence a →
Set.upperDensity (Set.range a) > 0 := by
sorry

end Green7
Loading