For this exercise, I need to calculate all possible numbers that satisfy the eleven test. The eleven test is a generalisation of the following:
Let $a_1, a_2, a_3$ be numbers. Then it should hold that $a_1 + 2a_2 + 3a_3 (\text{mod } 11)=0$
I tried fixing one number and then going on, but that did not work for me:
Let $k$ be a number and let $k:=3a_3$. Therefore, $a_1+2a_2 (\text{mod } 11)=11-k$. But then what? I can fix $l := 2a_2$, then $a_1=11-k-l$.