Is it possible to simplify this nested GCD?
$$\gcd\bigg(\gcd(m^2,\sigma(m^2)),\frac{m^2}{\gcd(m^2,\sigma(m^2))}\bigg)$$
Here, $\gcd(m^2,\sigma(m^2))>1$ and $\sigma(m^2)$ is the sum of divisors of $m^2$.
I tried using WolframAlpha, but it appears to evaluate the GCD erroneously to $$\gcd\bigg(\gcd(m^2,\sigma(m^2)),\frac{m^2}{\gcd(m^2,\sigma(m^2))}\bigg) = 1.$$
This is because I know from a published result that the following must hold for the problem that I am considering: $$\gcd\bigg(\gcd(m^2,\sigma(m^2)),\frac{m^2}{\gcd(m^2,\sigma(m^2))}\bigg) > 1.$$
Updated (March 2 2019)
I tried to evaluate the simpler expression $$\gcd(m^2,\sigma(m^2))$$ using WolframAlpha, and obtained $$\gcd(m^2,\sigma(m^2)) = 1,$$ which I know to be false. Hence, it appears that my problem cannot be solved using WolframAlpha alone.
I have therefore removed the wolfram-alpha and computer-algebra-systems tags.
I used Sage Cell Server and found the following examples for $\gcd(m^2,\sigma(m^2))>1$ for $m < 100$:
$$14, 21, 39, 42, 57, 63, 70, 77, 78, 84, 93, 98, 99$$
– Jose Arnaldo Bebita Dris Mar 02 '19 at 22:40