Question: How do I write the code?

Plot the first 20 Fibonacci numbers.

I have this so far..

restart;

nums := [seq(i, i = 1 .. 20)]*with(combinat, fibonacci);

fibnums;

 

Please Wait...