reviewed
approved
reviewed
approved
proposed
reviewed
editing
proposed
Number of ways to express 5/n as Egyptian fractions in just three terms, ; i.e.; , 5/n = 1/x + 1/y + 1/z satisfying 1<=x<=y<=z.
See A073101 for the 4/n conjecture due to Erdös Erdős and Straus.
approved
editing
editing
approved
proposed
approved
editing
proposed
Number of ways to express 5/n as Egyptian fractions in just three terms, i.e.; 1/n = 1/x + 1/y + 1/z satisfying 1<=x<=y<=z.
See A073101 for the 4/n conjecture due to Erdös and Straus.
f[n_] := Length@ Solve[ 5/n == 1/x + 1/y + 1/z && 1 <= x <= y <= z, {x, y, z}, Integers]; Array[f, 70]
approved
editing