The i means you are dealing with a set of equation. a is a coefficient and summation symbol means that each equation has a certain number of terms. For example:
\ddot{x_{1}}=a_{11}x_{1}+a_{12}x_{2}+a_{13}x_{3}
\ddot{x_{2}}=a_{21}x_{1}+a_{22}x_{2}+a_{23}x_{3}
\ddot{x_{3}}=a_{31}x_{1}+a_{32}x_{2}+a_{33}x_{3}
Where i = 1 to 3 and j = 1 to 3. You have 3 equations with 3 unknown, and can solve this using the matrix determinant method.
Regards.