Chebyshev functions #
This file defines the Chebyshev functions theta and psi.
These give logarithmically weighted sums of primes and prime powers.
Main definitions #
Chebyshev.psigives the sum ofArithmeticFunction.vonMangoldtChebyshev.thetagives the sum oflog pover primes
Main results #
Chebyshev.theta_eq_log_primorialshows thatθ xis the log of the product of primes up to xChebyshev.theta_le_log4_mul_xgives Chebyshev's upper bound onθ
Notation #
We introduce the scoped notations θ and ψ in the Chebyshev namespace for the Chebyshev
functions.
References #
Parts of this file were upstreamed from the PrimeNumberTheoremAnd project by Kontorovich et al, https://github.com/alexKontorovich/PrimeNumberTheoremAnd.
TODOS #
The sum of ArithmeticFunction.vonMangoldt over integers n ≤ x.
Equations
- Chebyshev.psi x = ∑ n ∈ Finset.Ioc 0 ⌊x⌋₊, ArithmeticFunction.vonMangoldt n
Instances For
The sum of ArithmeticFunction.vonMangoldt over integers n ≤ x.
Equations
- Chebyshev.termψ = Lean.ParserDescr.node `Chebyshev.termψ 1024 (Lean.ParserDescr.symbol "ψ")
Instances For
The sum of log p over primes p ≤ x.
Equations
- Chebyshev.theta x = ∑ p ∈ Finset.Ioc 0 ⌊x⌋₊ with Nat.Prime p, Real.log ↑p
Instances For
The sum of log p over primes p ≤ x.
Equations
- Chebyshev.termθ = Lean.ParserDescr.node `Chebyshev.termθ 1024 (Lean.ParserDescr.symbol "θ")