Tribonacci numbers are the numbers in a sequence in which the first three
elements are 0, 1, and 1, and the value of each subsequent element is the sum
of the previous three elements:
0, 1, 1, 2, 4, 7, 13, 24, ...
Write a MATLAB program in a script file that determines and displays the
first 10 Fribonacci numbers.
F1=0
F2=1
F3=1
F4 = 2
F5 = 4
F6 = 7
F7 = 13
F8 = 24