There's no widening in Java, in the sense that is implied by the question: "the compiler widens i to a double". If you define a variable as int, it will always be an int. Internally, the representation of some types may be wider than necessary (for instance, a short may be stored as 4-bytes rather than 2), but this is not affected/determined by the way the variable is used.
Specifically, in the loop describes in the question the compiler emits code that converts the double returned from Math.sqrt() into an integer.
You can think of it as if the compiler rewrites the code as follows:
for(int i=3; (double) i < (Math.sqrt(n)); i=i+2)
(thanks to the people who commented. Fixed the snippet)