Interesting or Fun Facts about Fibonacci Sequence (original) (raw)

Last Updated : 23 Jul, 2025

The Fibonacci sequence is a series where each number is the sum of the two preceding ones, starting from 0 and 1:

**0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, .....

Fibonacci Numbers be derived using the formula: **F n = F n-1 + F n-2

Where,
• Fn​ represents the **current Fibonacci number (the n-th term).
• Fn−1 represents the **previous Fibonacci number (the (n−1)-th term).
• Fn−2​ represents the **term before the previous Fibonacci number (the (n−2)-th term).
Base condition: F 0 **= 0 and F 1 = 1.

**Below are some interesting facts about Fibonacci numbers.

**Patterns in Fibonacci Numbers

**For example, the sequence of Fibonacci modulo 3 begins 0, 1, 1, 2, 0, 2, 2, 1, 0, 1, 1, 2, 0, 2, 2, 1, 0, 1, 1, 2, 0, 2, 2, 1, 0, ... The last two digits repeat with a period of 300, the last three with a period of 1500., last 4 digits with 15000, and the last 5 with 150,000. This is called Pisano Period.

**Factors and Divisibility Properties of Fibonacci Numbers

**Note: Every number is a factor of some Fibonacci number and there are infinitely many Fibonacci numbers with any given factor.

**Fibonacci Numbers with Index Divisibility

Certain Fibonacci numbers are divisible by their corresponding index numbers. For example:

This type of index number follows a certain pattern:

**1, 5, 12, 24, 25, 36, 48, 60, 72, 84, 96, 108, 120, 125, 132, .....

This series has all powers of 5 and all multiples of 12.

**Mathematical Properties of Fibonacci Numbers

**Connection to the Goldenintegers Ratio

**Summation Properties of Fibonacci Numbers

Fibonacci in Nature and Art

**Related Reads:

**Interesting Problems Based on Fibonacci Numbers

  1. Stair Climbing: There are **n stairs, and a person standing at the bottom wants to climb stairs to reach the top. The person can climb either **1 stair or **2 stairs at a time, the task is to count the number of ways that a person can reach at the top.
  2. Binary Strings Without Consecutive 1s: Given a positive integer N, count all possible distinct binary strings of length N such that there are no consecutive 1’s.
  3. Dudeney's Cow Problem: If a cow has her first female calf at age two, and then produces another female calf each year after that, how many female calves will there be after 12 years, assuming no deaths?