Learn R Programming

numbers (version 0.5-6)

previousPrime: Previous Prime

Description

Find the next prime below n.

Usage

previousPrime(n)

Arguments

n
natural number.

Value

  • Integer.

Details

previousPrime finds the next prime number smaller than n, while nextPrime finds the next prime number below n. In general the previousn prime will occur in the interval [n-1,n-log(n)].

In double precision arithmetic integers are represented exactly only up to 2^53 - 1, therefore this is the maximal allowed value.

See Also

Primes, isPrime

Examples

Run this code
p <- previousPrime(1e+6)  # 999983
isPrime(p)                # TRUE

Run the code above in your browser using DataLab