{{ toc.name }}
{{ toc.signature }}
{{ toc.name }} {{ 'ml-btn-view-details' | message }}
{{ stepNode.name }}
{{ 'ml-toc-proceed' | message }}
Lesson
Exercises
Recommended
Tests
An error ocurred, try again later!
Chapter {{ article.chapter.number }}
{{ article.number }}. 

{{ article.displayTitle }}

{{ article.intro.summary }}
{{ 'ml-btn-show-less' | message }} {{ 'ml-btn-show-more' | message }} expand_more
{{ 'ml-heading-abilities-covered' | message }}
{{ ability.description }} {{ ability.displayTitle }}
{{ 'ml-heading-lesson-settings' | message }}
{{ 'ml-lesson-show-solutions' | message }}
{{ 'ml-lesson-show-hints' | message }}
{{ 'ml-lesson-number-slides' | message : article.intro.bblockCount}}
{{ 'ml-lesson-number-exercises' | message : article.intro.exerciseCount}}
{{ 'ml-lesson-time-estimation' | message }}

Concept

The Fibonacci Sequence

The Fibonacci sequence is a well-known sequence, where the first two terms are both Subsequent terms in the sequence are generated by adding the two preceding numbers.
Fibonacci sequence: 1, 1, 2, 3, 5, 8, ...
Starting from the third term onward, the sequence can be represented using a rule.
This is an example of recursive rule as the term depends on the values of the previous two terms. This indicates that to find, for instance, the seventh term of the sequence, it is necessary to have information about the fifth and sixth terms.
and
Evaluate

The sequence is named after the Italian mathematician Leonardo Fibonacci, who used it to describe how pairs of rabbits increases as they multiply under certain conditions. Sometimes, the first two numbers are defined as and This, however, does not change the sequence in any way other than by increasing the index of every term by one compared to the previously mentioned definition.