login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A226645
Number of ways to express 6/n as Egyptian fractions in just three terms; i.e., 6/n = 1/x + 1/y + 1/z satisfying 1<=x<=y<=z.
7
0, 1, 1, 3, 3, 3, 1, 6, 8, 10, 7, 10, 1, 9, 12, 20, 8, 21, 2, 21, 17, 16, 11, 28, 7, 11, 26, 33, 9, 36, 3, 31, 25, 24, 60, 57, 2, 11, 20, 68, 10, 42, 6, 35, 81, 23, 15, 70, 10, 37, 25, 51, 14, 79, 33, 76, 32, 30, 20, 96, 2, 17, 86, 65, 48, 62, 9, 50, 42, 138, 35, 160, 2, 18, 53, 51, 52, 59, 8, 142, 89, 34, 23, 136, 37, 24, 33, 140, 23, 196, 30, 46, 37, 32, 75, 128, 5, 43, 103, 98
OFFSET
1,4
COMMENTS
See A073101 for the 4/n conjecture due to Erdős and Straus.
LINKS
MATHEMATICA
a[n_] := Length@ Solve[ 6/n == 1/x + 1/y + 1/z && 1 <= x <= y <= z, {x, y, z}, Integers]; Array[a, 70]
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved