Thursday, August 28, 2025
HomeData Modelling & AIAlternate Fibonacci Numbers

Alternate Fibonacci Numbers

Give a number N, print alternate fibonacci numbers till n-th Fibonacci.

Examples: 

Input :  N = 7
Output : 0 1 3 8 

Input  : N = 15
Output : 0 1 3 8 21 55 144 377 

Read method 2 in the following article : fibonacci number 

Approach:Using dynamic programming approach. Keep storing the previously calculated fibonacci numbers and using the previous two to store the next fibonacci number. 
 

C++




// Alternate Fibonacci Series using Dynamic Programming
#include <bits/stdc++.h>
using namespace std;
 
void alternateFib(int n)
{
    if (n < 0)
      return;
 
    /* 0th and 1st number of the series are 0 and 1*/
    int f1 = 0;
    int f2 = 1;
 
    cout << f1 << " ";
    for (int i = 2; i <= n; i++) {
         int f3 = f2 + f1;
           
         if (i % 2 == 0)
            cout << f3 << " ";
 
         f1 = f2;
         f2 = f3;
    }
}
 
int main()
{
    int N = 15;
    alternateFib(N);
    return 0;
}


Java




// Alternate Fibonacci Series
// using Dynamic Programming
import java.io.*;
 
class GFG
{
static void alternateFib(int n)
{
    if (n < 0)
    return;
 
    /* 0th and 1st number of the
       series are 0 and 1*/
    int f1 = 0;
    int f2 = 1;
 
    System.out.print(f1 + " ");
    for (int i = 2; i <= n; i++)
    {
        int f3 = f2 + f1;
         
        if (i % 2 == 0)
            System.out.print(f3 + " ");
 
        f1 = f2;
        f2 = f3;
    }
}
 
// Driver Code
public static void main (String[] args)
{
    int N = 15;
    alternateFib(N);
}
}
 
// This code is contributed
// by chandan_jnu.


Python3




# Alternate Fibonacci Series
# using Dynamic Programming
def alternateFib(n):
    if (n < 0):
        return -1;
 
    # 0th and 1st number of
    # the series are 0 and 1
    f1 = 0;
    f2 = 1;
 
    print(f1, end = " ");
    for i in range(2, n + 1):
        f3 = f2 + f1;
         
        if (i % 2 == 0):
            print(f3, end = " ");
 
        f1 = f2;
        f2 = f3;
 
# Driver Code
N = 15;
alternateFib(N);
 
# This code is contributed by mits


C#




// Alternate Fibonacci Series
// using Dynamic Programming
using System;
 
class GFG
{
static void alternateFib(int n)
{
    if (n < 0)
    return;
 
    /* 0th and 1st number of
    the series are 0 and 1*/
    int f1 = 0;
    int f2 = 1;
 
    Console.Write(f1 + " ");
    for (int i = 2; i <= n; i++)
    {
        int f3 = f2 + f1;
         
        if (i % 2 == 0)
            Console.Write(f3 + " ");
 
        f1 = f2;
        f2 = f3;
    }
}
 
// Driver Code
public static void Main ()
{
    int N = 15;
    alternateFib(N);
}
}
 
// This code is contributed
// by chandan_jnu.


PHP




<?php
// Alternate Fibonacci Series
// using Dynamic Programming
function alternateFib($n)
{
    if ($n < 0)
    return;
 
    /* 0th and 1st number of
    the series are 0 and 1*/
    $f1 = 0;
    $f2 = 1;
 
    echo $f1 . " ";
    for ($i = 2; $i <= $n; $i++)
    {
        $f3 = $f2 + $f1;
         
        if ($i % 2 == 0)
            echo $f3 . " ";
 
        $f1 = $f2;
        $f2 = $f3;
    }
}
 
// Driver Code
$N = 15;
alternateFib($N);
 
// This code is contributed by mits
?>


Javascript




<script>
 
// Alternate Fibonacci Series
// using Dynamic Programming
function alternateFib(n)
{
    if (n < 0)
        return;
 
    // 0th and 1st number of the
    // series are 0 and 1
    var f1 = 0;
    var f2 = 1;
 
    document.write(f1 + " ");
    for(i = 2; i <= n; i++)
    {
        var f3 = f2 + f1;
 
        if (i % 2 == 0)
            document.write(f3 + " ");
 
        f1 = f2;
        f2 = f3;
    }
}
 
// Driver Code
var N = 15;
 
alternateFib(N);
 
// This code is contributed by gauravrajput1
 
</script>


Output: 

0 1 3 8 21 55 144 377

 

Time Complexity : O(n) 
Auxiliary Space : O(1)
 

Feeling lost in the world of random DSA topics, wasting time without progress? It’s time for a change! Join our DSA course, where we’ll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 neveropen!

RELATED ARTICLES

Most Popular

Dominic
32244 POSTS0 COMMENTS
Milvus
80 POSTS0 COMMENTS
Nango Kala
6615 POSTS0 COMMENTS
Nicole Veronica
11787 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11833 POSTS0 COMMENTS
Shaida Kate Naidoo
6729 POSTS0 COMMENTS
Ted Musemwa
7010 POSTS0 COMMENTS
Thapelo Manthata
6684 POSTS0 COMMENTS
Umr Jansen
6699 POSTS0 COMMENTS