With every positive integer $n$, we have a set $T_n=\{11(k+h)+10(n^k+n^h) \mid 1\leq k,h \leq 10\}$. Find all $n$ such that there is no $a\neq b\in T_n$ with $110 \mid (a-b)$.
I tried to divided it into some case with $n\leq 11$, and then to discard the case not right. Is there some other way to solve it?
We can find $n\pmod{110}$. Here is a simple Python code(maybe it can be optimized, comment about optimization are welcome) you can use to find all $n\pmod{110}$.
In this program, first storing the values in the set $T_n$ using
t(n)function in the program. Then choosing an element $a$, another element $b$ from the rest of the set. But we can have same value again, so checking if $a$ is not equal to $b$, then if $110$ does not divides $(a-b)$, storing that $n$ in an array and printing the array as a set.The $n$ values for which $T_n$ satisfies the property are: $$n\equiv 2, 6, 7, 8, 13, 17, 18, 19, 24, 28, 29, 30, 35, 39, 40, 41, 46, 50, 51, 52, 57, 61, 62, 63, 68, 72,\\ 73, 74, 79, 83, 84, 85, 90, 94, 95, 96, 101, 105, 106, 107\pmod{110}$$
You can run it online here by pasting the above code and choosing
Python 3from left column there. After pasting press theRunbutton.Edit:(thanks to @John for his valuable comment)
Suppose $n_0$ is a solution. Then as in the second term we have a factor of $10$, so, if $n_1\equiv n_0\pmod{11}$ we have $n_1$ also a solution. Hence, finding $n$ below $11$ will be enough. As we can see from above code, $2,6,7,8$ are the only $n$ below $11$, hence any number $n$ below $110$ which is congruent to one of $2,6,7,8\pmod{11}$ is a solution.