Let $a$, $b$, $c$ be three positive integer numbers, with $a \ge b$, such that $\frac{1}{a}+\frac{1}{b}+\frac{2}{c}$ is integer.
I've written a program to find the solutions for $a, b, c \le 1000$, and I've got:
a b c
1 1 1
1 1 2
2 1 4
2 2 1
2 2 2
3 1 3
3 2 12
3 3 6
4 2 8
4 4 4
6 2 6
6 3 4
6 6 3
10 2 5
12 4 3
But I don't see any proof for the fact that those are the only solutions. Can you help me? Thanks!
Put $n = \dfrac{1}{a}+\dfrac{1}{b}+\dfrac{2}{c}= \dfrac{2ab+bc+ca}{abc}\implies 2ab+bc+ca = nabc\implies c(a+b-nab)= -2ab\implies c = \dfrac{2ab}{nab-a-b}$. We have: $nab-a-b \ge nab-2ab = (n-2)ab\implies c \le \dfrac{2ab}{(n-2)ab}= \dfrac{2}{n-2}\le 1$ for $n \ge 4$. This means $n = 1,2, 3$. Can you take it from here ? It's almost done.
Continuation of work after initial post:
If $n = 1 \implies \dfrac{1}{a}+\dfrac{1}{b}+\dfrac{2}{c} = 1$. Since $a, b,c \ge 1$, none of them can be $1$, and $c \ge 3$. Thus if $c = 3$, then $\dfrac{1}{a}+\dfrac{1}{b} = \dfrac{1}{3}\implies \dfrac{1}{3} \le \dfrac{2}{b}\implies b \le 6\implies b = 2,3,4,5,6$ . By plug in each value of $b = 2,3,4,5,6$, only $b = 6$ yields $a = 6$ and is an integer. Thus $(n,a,b,c) = (1,6,6,3)$ is a solution. I think you can continue this work to obtain all the solutions of the equation above.