-- | -- Module: Math.NumberTheory.Primes.Counting -- Copyright: (c) 2011 Daniel Fischer -- Licence: MIT -- Maintainer: Daniel Fischer -- Stability: Provisional -- Portability: non-portable -- -- Number of primes not exceeding @n@, @π(n)@, and @n@-th prime; also fast, but -- reasonably accurate approximations to these. module Math.NumberTheory.Primes.Counting ( -- * Exact functions primeCount , nthPrime -- * Approximations , approxPrimeCount , nthPrimeApprox ) where import Math.NumberTheory.Primes.Counting.Impl import Math.NumberTheory.Primes.Counting.Approximate