You can use the technique of Newton's Sums which @user157227's comment hinted at
SOLUTION:
Basically imagine if you factored the polynomial into its 5 roots
$$(x - r_1)(x - r_2)..(x - r_5)$$
And then expanded that out:
it quickly will become evident you get an answer of the form
$$a_0 + a_1x + a_2x^2 ... a_4x^4 + x^5$$
such that
$$ \begin{matrix} a_4 = r_1 + r_2 ... r_5 \\ a_3 = r_1r_2 + r_1r_3 + ... + r_1r_5 + r_2 r_3 + ... + r_2 r_5 + ... r_4 r_5 \\ a_2 = r_1 r_2 r_3 + r_1 r_2 r_4 + ... r_3 r_4 r_5 \\ a_1 = r_1r_2r_3r_4 + ... +r_2 r_3r_4r_5 \\ a_0 = r_1r_2r_3r_4r_5 \end{matrix} $$
So to solve the case for sum of all 11th powers of the roots we need to only solve for the third, 2nd and single powers based on your formula. We start with:
the sum of all first powers is merely $a_4: \ (r_1 + r_2 .. r_5)$
To find the square of all the powers note that we can compute
$$(r_1 + r_2 + \ ... \ + r_5)^2 = \sum(r_i^2) + 2\sum(r_ir_j) = \sum(r_i^2) + 2a_3 \rightarrow (a_4)^2 - 2a_3 = \sum(r_i^2) = \Omega_1 $$
To find the cube of all the powers
$$(r_1 + r_2 + \ ... \ r_5)^3 = \sum(r_i)^3 + 3\sum(r_i^2r_j) + 6\sum(r_ir_jr_k) = 6(r_1r_2r_3 + ... r_3r_4r_5) + 3(r_1^2 + ... + r_5^2)(r_1 + ... + r_5) - 2\sum(r_i)^3 \rightarrow \sum(r_i)^3 = -\frac{1}{2} \left( a_4^3 - 6(a_2) + 3(\Omega_1)a_4 \right) = \Omega_2$$
Now since $a_4,a_3,a_2$ are equal to 0 it follows that
$$25\sum(\Omega_2) + 10\sum(\Omega_1) + a_4 = 0$$