-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDESCRIPTION
29 lines (29 loc) · 1.25 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Package: primes
Type: Package
Title: Fast Functions for Prime Numbers
Version: 1.6.0
Date: 2023-12-30
Authors@R: c(
person("Os", "Keyes", email = "[email protected]", role = c("aut", "cre")),
person("Paul", "Egeler", email = "[email protected]", role = c("aut"), comment = c(ORCID = "0000-0001-6948-9498"))
)
Description: Fast functions for dealing with prime numbers, such as testing
whether a number is prime and generating a sequence prime numbers.
Additional functions include finding prime factors and Ruth-Aaron pairs,
finding next and previous prime numbers in the series, finding or estimating
the nth prime, estimating the number of primes less than or equal to an
arbitrary number, computing primorials, prime k-tuples (e.g., twin primes),
finding the greatest common divisor and smallest (least) common multiple,
testing whether two numbers are coprime, and computing Euler's totient
function. Most functions are vectorized for speed and convenience.
License: MIT + file LICENSE
Depends: R (>= 4.0)
Imports: Rcpp
LinkingTo: Rcpp
Suggests: testthat
URL: https://github.com/ironholds/primes
BugReports: https://github.com/ironholds/primes/issues
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
Encoding: UTF-8
LazyData: true