The DATA step generates the values of X and Y. The values of X result from using specified values of Y as an exponent.
data equa;
   do Y=1 to 3 by .1;
      X=10**y;
      output;
   end;
run;