I am trying to slow the loop down by trying to use the "blink without delay." Are you saying that there is no way to slow the for loop down without using delay()?
It does work without any delay() like this:
for (int i = 0; i <=255; i++){
analogWrite (led, i);
Serial.println (i);