@@ -7,7 +7,7 @@ void Sundaram(bool A[], int N)
i = 1; j = 1;
while ((2 * i * j + i + j) <= N)
{
while (j <= (N - i) / (2 * i + 1))
while ( (N - i) / (2 * i + 1) >= j )
A[2 * i * j + i + j] = false;
j++;
The note is not visible to the blocked user.