/- 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 Polynomialnamespace Dickson

Dickson's conjecture If a finite set of linear integer forms $f_i(n) = a_i n+b_i$ satisfies Schinzel condition, there exist infinitely many natural numbers $m$ such that $f_i(m)$ are primes for all $i$.

@[category research open, AMS 11] theorem declaration uses 'sorry'dickson_conjecture (fs : Finset [X]) (hfs : f fs, f.degree = 1 BunyakovskyCondition f) (hfs' : SchinzelCondition fs) : Infinite {n : | f fs, (f.eval (n : )).natAbs.Prime} := fs:Finset [X]hfs: f fs, f.degree = 1 BunyakovskyCondition fhfs':SchinzelCondition fsInfinite {n | f fs, Nat.Prime (eval (↑n) f).natAbs} All goals completed! 🐙

Polignac's conjecture For any integer $k$ there are infinitely many primes $p$ such that $p + 2k$ is prime.

@[category research open, AMS 11] theorem declaration uses 'sorry'polignac_conjecture (k : ) : Infinite {p : | p.Prime (p + 2 * k).Prime} := k:Infinite {p | Nat.Prime p Nat.Prime (p + 2 * k)} All goals completed! 🐙

The infinitude of Sophie Germain primes There are infinitely many primes $p$ such that $2p + 1$ is prime.

@[category research open, AMS 11] theorem declaration uses 'sorry'infinite_safe_primes : Infinite {p : | Prime p Prime (2 * p + 1)} := Infinite {p | Prime p Prime (2 * p + 1)} All goals completed! 🐙

The infinitude of cousin primes There are infinitely many primes $p$ such that $p + 4$ is prime.

@[category research open, AMS 11] theorem declaration uses 'sorry'infinite_cousin_primes : Infinite {p : | Prime p Prime (p + 4)} := Infinite {p | Prime p Prime (p + 4)} All goals completed! 🐙

The infinitude of sexy primes There are infinitely many primes $p$ such that $p + 6$ is prime.

@[category research open, AMS 11] theorem declaration uses 'sorry'infinite_sexy_primes : Infinite {p : | Prime p Prime (p + 6)} := Infinite {p | Prime p Prime (p + 6)} All goals completed! 🐙 /- ## Other consequences - Landau's fourth problem (primes and perfect squares) - Twin prime conjecture - Artin's primitive root conjecture - First Hardy–Littlewood conjecture *Reference:* [Arxiv](https://arxiv.org/pdf/0906.3850) -/ end Dickson