I need the values in order to test if the fit with my solution. And when the solution of the differential equation is unknown or weird, the only solution is the values of the recursive sequence! Usually I do not know what the differential equation is before I make up what the recursive sequence is. Every physicist and mathematician should know this, but I bet there are very few who can solve the differential equation through the relevant recursive sequence, like I do, which is what they did in the 1700's I guess.
Actually I find it strange that some differential equations cannot be solved through the relevant recursive sequence and they are solved otherwise, e.g. x"(t)=-kx'(t)^2, x(0)=0, x'(0)=U. Its recursive sequence is
u(n)=u(n-1)-ku(n-1)^2dt or u(n)=u(n-1)-ku(n)^2dt
where each next u(n) corresponds to a next dt. But this sequence cannot be solved. In other cases it can, e.g. at Stokes drag x''(t)=-kx'(t), x'(0)=U, x(0)=0, its recursive sequence is
u(n)=u(n-1)-ku(n-1)dt, u(0)=U=>u(n)=U(1 - dt k)^n
and you place n=t/dt (because 1 sec has 1/dt number of changes, therefore t secs have t*1/dt=n number of changes) and
lim dt->0 U(1 - dt k)^(t/dt)=Ue^(-k t)=u(t)=x'(t).
which is the solution of the differential equation. Partly, since this is only the x'(t), I haven't tried to solve for x(t).
Note that wolframalfa in some cases it gives semi-wrong and in some cases no answer for x"(t)=-kx'(t)^2, x(0)=0, x'(0)=U. If you plug it in like I wrote it, it gives an answer with i. What am I supposed to do with i?