A positive number greater than 1 can be defined untouchable when it's not equal to the sum of the proper divisors (called also aliquot sum) of any other positive number, in a range starting from 2 and ending with the square of the given number (bounds included).
Given an integer number, implement a function that returns:
true if the given number is untouchable."Invalid Input" if the given number is lower than 2.isUntouchable(2) ➞ true
// Range: 2 to 4
// 2 = 1 | 3 = 1 | 4 = 1+2 = 3
// No sum is equal to the given number
isUntouchable(3) ➞ [4]
// Range: 2 to 9
// As in the example above, 4 = 1+2 = 3
isUntouchable(6) ➞ [6, 25]
// Range: 2 to 36
// 6 = 1+2+3 = 6 | 25 = 1+5 = 6
isUntouchable(1) ➞ "Invalid Input"
// The given number is lower than 2