I have written the following r code.
r
t = seq(0.01, 5, by = 0.001) for(i in c(t)){ print(c( i, round(2^i, 3) , round(exp(-3*i)))) }