Why we created bitset<10000005>?

In the implementation, why we used bitset<10000005>? Why did’nt we used bitset<10000000> ?

It’s just to be safe that the number of elements will not exceed, u can alse use 1e7+1 or 1e7+2 anything.