First of all, we have to understand the meaning of the "width" which is nothing but number of prime factors of any particular number, no matter if the factors are the same.
Then we have to maximize [p+5q] in such a way that it remains below 2000.
Note that the smallest prime is 2, so to maximize the width we will use no other prime than 2.
The first step is to maximize the "p" because if we maximize "q" then "5q" will not give us the maximum possible width in a way that [p+5q] remains below 2000.
Maximizing "p": \(2^{10}\) gives us 1024, but we can't go beyond that as it will cross the 2000 mark.
So, the maximum width of "p" is 10.
Then, we have to maximize "q" to the extent that [1024+5q] remains below 2000.
\(2^7\) gives us 128 and we can't go beyond that as [1024+5q] will result in a number greater than 2000.
So, the maximum width of "q" is 7.
Thus the maximum possible sum of the width of p and the width of q = 10 + 7 = 17
Option D is the right answer.