Given: n = p^3 * q^6 * r^7 , where p, q, and r are different prime numbers
To find: factors of n which are squares of an integer greater than 1
Now all those factors with even power will meet the above ask
i.e p^2, q^2, q^4, q^6, r^2, r^4 and r^6 and their combinations.
For ease let's assume
p^2 = A
q^2 = B1, q^4 = B2, q^6 = B3
r^2 = D1, r^4 = D2, r^6 = D3
Now total number of factors which are squares of an integer > 1 will be = total number of combinations of the above variables= total number of single factors + total number of combination of two variable factors + total number of combination of 3 variable factors
= (A, B1, B2, B3, D1, D2, D3) + (ways of choosing combinations of A and B1/2/3 + ways of choosing combinations of B1/2/3 and D1/2/3 + ways of choosing combinations of A and D1/2/3) + (ways of choosing combinations of A, B1/2/3 and D1/2/3)
= 7 + (1C1 * 3C1 + 3C1 * 3C1 + 1C1 * 3C1) + (1C1 * 3C1 * 3C1)
= 7 + 3 + 9 + 3 + 9
= 31
Hence total number of factors which are squares of an integer = 31