in the following sequence, each number (except the first two) is the sum of the previous two number: 0, 1, 1, 2, 3, 5, 8, 13, .... this sequence is known as the fibonacci sequence. given the positive integer n create a list consisting of the portion of the fibonacci sequence less than or equal to n. for example, if n is 6, then the list would be [0, 1, 1, 2, 3, 5] and if n is 1, then the list would be [0, 1, 1]. associate the list with the variable fib.