/- 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 open Filternamespace Andrica

Andrica's conjecture The inequality $\sqrt{p_{n+1}}-\sqrt{p_n} < 1$ holds for all $n$, where $p_n$ is the $n$-th prime number.

@[category research open, AMS 11] theorem declaration uses 'sorry'andrica_conjecture (n : ) : Real.sqrt ((n+1).nth Nat.Prime) - Real.sqrt (n.nth Nat.Prime) < 1 := n:(Nat.nth Nat.Prime (n + 1)) - (Nat.nth Nat.Prime n) < 1 All goals completed! 🐙

Ferreira proved that Andrica's conjecture is true for sufficiently large n.

@[category research solved, AMS 11] theorem declaration uses 'sorry'andrica_conjecture.ferreira_large_n : ∀ᶠ n in atTop, Real.sqrt ((n+1).nth Nat.Prime) - Real.sqrt (n.nth Nat.Prime) < 1 := ∀ᶠ (n : ) in atTop, (Nat.nth Nat.Prime (n + 1)) - (Nat.nth Nat.Prime n) < 1 All goals completed! 🐙 end Andrica