I have searched the web for a definition and I found that this are typically defined as
$F^n_{m} = F^n_{m-1} + F^n_{m-2} + \dots + F^n_{m-n}$
where $n$ stands for the number of previous numbers who are added up, and $m$ the mth number who has to be obtained, with $m \geq n+1$. But the first nth numbers are defined as follows:
$F^n_{1}=F^{n-1}_{1}, F^n_{2}= F^{n-1}_{2}, \dots, F^n_{n}=F^{n-1}_{n}$
That is, you depend on the Fibonacci $n-1$ step numbers, so for example, the first numbers of the Fibonacci $3$ step numbers are:
$1,1,2,4,7, \dots$
for $n=4$:
$1,1,2,4,8,15,\dots$
You see the pattern. So my question is: Why the first nth numbers not defined as $n$ ones? that is:
$F^n_{1}=F^n_{2}=\dots=F^n_{n}=1$
And also How different results does this definition could give, compared to the previous one?