OFFSET
1,1
COMMENTS
It seems that necessarily a(n) == 0 (mod 6).
This is not true. The terms that are not divisible by 6 are 3850, 7700, 13300, 14210, 15400, ... . - Amiram Eldar, Jun 24 2022
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..500
EXAMPLE
From Amiram Eldar, Jun 24 2022: (Start)
m = 6 is a term since for x = y = 6 we have 1/x + 1/y + 1/m = 1/6 + 1/6 + 1/6 = 1/2 = 1/phi(6).
m = 3850 is a term since for x = 3300 and y = 3696 we have 1/x + 1/y + 1/m = 1/3300 + 1/3696 + 1/3850 = 1/1200 = 1/phi(3850). (End)
MATHEMATICA
q[m_] := Module[{s = 1/EulerPhi[m] - 1/m, k}, AnyTrue[Range[m], 1/# < s && IntegerQ[k = 1/(s - 1/#)] && 0 < k <= m &]]; Select[Range[600], q] (* Amiram Eldar, Jun 24 2022 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Dec 08 2002
EXTENSIONS
3 missing terms inserted and more terms added by Amiram Eldar, Jun 24 2022
STATUS
approved