Start with a positive integer, then choose a negative integer. We’ll use these two numbers togenerate a sequence using the following rule: create the next term in the sequence by addingthe previous two. For example, if we started with 6 and βˆ’5, we would get the sequence6, βˆ’5, 1, βˆ’4alternating part, βˆ’3, βˆ’7, βˆ’10, βˆ’17, βˆ’27, . . .| {z} which starts with 4 elements that alternate sign before the terms are all negative. If we startedwith 3 and βˆ’2, we would get the sequence3, βˆ’2, 1, βˆ’1alternating part, 0, βˆ’1, βˆ’1, βˆ’2, βˆ’3, . . .| {z} which also starts with 4 elements that alternate sign before the terms are all non-positive.
Can you find a sequence of this type that starts with 5 elements that alternate sign?