I am reading an article on Fibonacci numbers at following link
http://xlinux.nist.gov/dads/HTML/kthOrderFibonacci.html
F(k)n = 0 for 0 ≤ n ≤ k-2
i am not getting what about above statement.
For example when k = 3 and n =2, 0 <= 2 < 1 which is not making sense? can any one please elaborate and pls give an example first 10 numbers 3rd order Fibonacci numbers
Basically you can’t sum the k values preceding n if n < k – 1, simply because there aren’t enough numbers. 🙂 as for your example, since n = k – 1 then f(n = 2) = 1.