Euler's method:
yn+1=yn+h y'(tn,yn)
In your case:
yn+1=yn+ 0.05 (3+tn-yn)
Therefore,
y1=y(0.05)=1+ 0.05(3+0-1) =1.1
y2=y(0.10)=1.1+0.05(3+0.05-1.1) = 1.1975
etc.
It's easiest to use a programming language to code up this method with a recursive loop.