Use REVERSE:

BEGIN
FOR i IN REVERSE 1 .. 3
LOOP
dbms_output.put_line(i);
END LOOP;
END;
/