It's not. A curve point being only a short distance away from the base point is not an indicator that it was multiplied only a few times.
Doubling G, and adding G to some multiple of G, completely moves away the x and y coordinates. This is the math behind doubling at least, which is done a few several dozen times for a given private key number.
So for the secp256k1 this expression becomes lambda = (3Bx2)/(2By) (I'm using red to color x coordinates and blue to color y coordinates).
Next you compute Cx = lambda2 -2Bx, then you compute Cy = lambda*(Bx - Cx) - By . And this is how you get coordinates (Cx, Cy) of the point C = B*2.
Point addition does a similar warping of the x and y coordinates.
The very fact that you're multiplying the new points with a huge lambda implies that public key ranges do not correspond to private key ranges.