OFFSET
1,2
COMMENTS
A rational in (0,1) as a fraction in lowest terms with denominator n, if expressed with denominator a(n) will have a practical-number denominator and can be written as an Egyptian fraction.
Note that a(n) exists for each n; a trivial upper bound is n * gpf(n)# = n * A034386(A006530(n)). - Charles R Greathouse IV, Jul 25 2016
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = n * A210445(n).
EXAMPLE
For example a(5)=20, indicating that a fraction with denominator 5 can be rewritten as a fraction with denominator 20, which is a practical number. Thus a fraction such as 4/5 can be written as 16/20. The new numerator 16 can be written as the sum of distinct divisors of 20 (16=10+5+1) because 20 is a practical number. The fractions 10/20, 5/20, and 1/20 are each a reciprocal: 1/2, 1/4, and 1/20. Thus 4/5 can be written as the sum of distinct reciprocals (Egyptian fraction expansion) as 4/5 = 1/2 + 1/4 + 1/20.
PROG
(PARI) /* First declare the function is_a005153(n) as in A005153 */
a(n) = my(k=1); while(!is_a005153(k*n), k++); k*n \\ Felix Fröhlich, Jul 18 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Lee A. Newberg, Jul 18 2016
EXTENSIONS
More terms from Felix Fröhlich, Jul 18 2016
STATUS
approved