use matlab.
2. Write a script to print series of n terms where n is input by user:
01123581324...
o The next number is found by adding up the two numbers before it:
the 2 is found by adding the two numbers before it(1+1)
o the 3 is found by adding the two numbers before it (1+2)
othe 5 is (2+3), and so on!