divisors | R Documentation |
Generates a list of divisors of an integer number.
divisors(n)
n |
integer whose divisors will be generated. |
The list of all divisors of an integer n
will be calculated
and returned in ascending order, including 1 and the number itself.
For n>=1000
the list of prime factors of n
will be
used, for smaller n
a total search is applied.
Returns a vector integers.
primeFactors
, Sigma
, tau
divisors(1) # 1 divisors(2) # 1 2 divisors(2^5) # 1 2 4 8 16 32 divisors(1000) # 1 2 4 5 8 10 ... 100 125 200 250 500 1000 divisors(1001) # 1 7 11 13 77 91 143 1001
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.