The first two terms of the regular Fibonacci series (RFS) are $1$. A more general case is that the first two terms are positive integers $a$ and $b$ respectively. For convenience, we may call it "generalized Fibonacci series" (GFS), and denote its $n$-th term by $g_n$.
It is possible to find the first two term $a$ and $b$ of the GFS with the known $n$-th term as follows. When $n$ is sufficiently large, the ratio of two adjacent terms is well approximate to $c=\frac{1+\sqrt5}{2}\approx1.618034...$. Thus, for example, with given $g_{13}=1398$, we can get $g_{12}=round(1398/1.618034)=864$. Then by iterative subtractions, $g_{k}=g_{k+2}-g_{k+1}$, for $k=n-2, n-3, ..., 2,1$, we can finally get $(a,b)=(6,6)$ .
This method has a limitation that the value of $n$ for the known $g_n$ should be sufficiently large with respect to the initial values $(a,b)$. That means, if $a$ and $b$ are quite large, $n$ also needs to be quite large.
Below is another possible method to avoid this problem. While the $n$-th term of the regular Fibonacci series can be expressed as
$f_n=\frac{1}{\sqrt5}[(\frac{1+\sqrt5}{2})^n-(\frac{1-\sqrt5}{2})^n]$,
the $n$-th term of the generalized Fibonacci series can be expressed as
$g_n=af_{n-2}+bf_{n-1}$.
This is a linear Diophantine equation (DEQ) with known $g_n$, $f_{n-2}$ and $f_{n-1}$. For example, with $g_{13}=1398$, $f_{12}=144$, $f_{11}=89$, we have the DEQ
$89a+144b=1398$.
This DEQ has a unique positive integer solution for both $a$ and $b$, i.e., $(a,b)=(6, 6)$.