ruth_aaron_pairs {primes} | R Documentation |
Find pairs of consecutive integers where the prime factors sum to the same
value. For example, (5, 6) are Ruth-Aaron pairs because the prime factors
5 = 2 + 3
.
ruth_aaron_pairs(min, max, distinct = FALSE)
min |
an integer representing the minimum number to check. |
max |
an integer representing the maximum number to check. |
distinct |
a logical indicating whether to consider repeating prime factors or only distinct prime number factors. |
A List of integer pairs.
Paul Egeler, MS