Determining nth value of the Fibonacci series or Fibonacci like series is well known and easy to calculate. Can that be reversed?
Can we calculate 1st and 2nd element of the series by giving the value of nth element?
for example, for non Fibonacci series number: 1398 the first and second element of that series is 6: 6 6 12 18 30 48 78 126 204 330 534 864 1398
by knowing only 1398, are we able to compute that it is 13th element in the series where first two elements are 6 an 6?
First, let's clarify that the thirteenth element in the recurrence is really $f_{12}$ since the first element is $f_0$. Now that said, I am assuming that by Fibonacci-like you mean that $f_n=f_{n-1}+f_{n-2}$, as opposed to the more general $f_n=af_{n-1}+bf_{n-2}$. The general solution to your Fibonacci-like equation is given by
$$ f_n=\bigg(f_1-\frac{f_0}{2}\bigg)F_n+\frac{f_0}{2}L_n $$
where
$$ F_n=\frac{\varphi^n-\psi^n}{\varphi-\psi}\\ L_n=\frac{\varphi^n+\psi^n}{\varphi+\psi} $$
where, of course, $\varphi,\psi=(1\pm\sqrt{5})/2$.
For your particular case, given $f_{12}=1398$, we seek to find $f_{0,1}$ from
$$ f_{12}=\bigg(f_1-\frac{f_0}{2}\bigg)F_{12}+\frac{f_0}{2}L_{12} $$
Alas, we have one equation in two unknowns, so we cannot find a solution unless $f_0=f_1$. I believe this will always give a solution, although it may turn out to be a non-integer.