Learn R Programming

primes (version 1.6.0)

ruth_aaron_pairs: Find Ruth-Aaron Pairs of Integers

Description

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\).

Usage

ruth_aaron_pairs(min, max, distinct = FALSE)

Value

A List of integer pairs.

Arguments

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.

Author

Paul Egeler, MS