Answer:
A Fibonacci pattern always begins with two numbers you choose (usually begins with 0 and 1, but can begin with any two numbers you choose). The third number in the sequence is found by adding the previous two numbers. This pattern continues until you choose to stop.
EXAMPLE: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, etc.
EXPLAINED: 0, 1, (0+1=1), (1+1=2), (1+2=3), (2+3=5), (3+5=8), (5+8=13), (8+13=21), (13+21=34), etc.