I am trying to prove there exist 1000000 consecutive numbers divisible by the square of a prime.
I have already tried several ways
- prove that the alternative is impossible didn’t work because it’s easy to find a million numbers that are not all non-prime;
- I tried ‘constructing’ a list, by starting from a random list and multiplyingcto get squares of primes, no luck…
I am currently traveling with limited network, so it’s difficult to look up tips online. If anyone can give me a hint in the right direction, that would be much appreciated…
Thanks!
Pick three primes $p, q,$ and $r$. Use the Chinese Remainder Theorem to solve the system
$$n \equiv 0 \pmod{p^2}$$ $$n \equiv -1 \pmod{q^2}$$ $$n \equiv -2 \pmod{r^2}$$
Then $p^2\mid n$, $q^2\mid n+1$, $r^2\mid n+2$.
So there are three consecutive numbers divisible by the square of a prime.