Divisors | R Documentation |
Calculate divisors of positive natural numbers.
Divisors(x)
x |
integer number for which the divisors are to be returned |
Divisibility is a mathematical relationship between two integers. An integer is divisible by another integer if there is no remainder in the division. The number 11 has only two divisors: 1 and the number 11 itself, whereas the number 12 has many divisors: 1, 2, 3, 4, 6 and 12.
In elementary number theory, the concept of divisibility is limited to natural numbers.
The number of its divisors can be determined with the function length()
.
an integer vector containg the divisors
Andri Signorell <andri@signorell.net>
Primes
, IsPrime
, GCD
, LCM
Divisors(c(145, 786))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.