I was doing a codechef question https://www.codechef.com/problems/LCMMANIA which asks us to find, three numbers $A, B, C$ such that given $N$:
$N = lcm(A, B) + lcm(B, C) + lcm(C, A)$
While solving the question i made an observation that if $N$ is a power of 2 there would be no valid $A, B, C$ satisfying the above equation (I tested it by writing brute force code)
I tried proving that myself but just couldn't get anywhere. I searched on google and even tried ChatGPT but nothing gave me a satisfying logical explanation.
My Question:so How do we prove that statement?