- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Python Program for nth multiple of a number in Fibonacci Series
In this article, we will learn about the solution to the problem statement given below.
Problem statement− We are given a number, we need to find the nth multiple of a number k in Fibonacci number.
The solution to the problem is discussed below−
Example
# find function def find(k, n): f1 = 0 f2 = 1 i =2; #fibonacci recursion while i!=0: f3 = f1 + f2; f1 = f2; f2 = f3; if f2%k == 0: return n*i i+=1 return # multiple of which number n = 5; # number k = 4; print("Position of n\'th multiple of k in""Fibonacci Series is: ", find(k,n));
Output
Position of n'th multiple of k inFibonacci Series is: 30
All the variables and functions are declared in the global scope as shown in the figure above.
Conclusion
In this article, we have learned how we can find nth multiple of a number k in the Fibonacci series.
- Related Articles
- Java Program for nth multiple of a number in Fibonacci Series
- Program to find Nth Fibonacci Number in Python
- Program to find Fibonacci series results up to nth term in Python
- Write a C# function to print nth number in Fibonacci series?
- C program to find Fibonacci series for a given number
- Nth element of the Fibonacci series JavaScript
- Program to find nth Fibonacci term in Python
- Program to find Nth Even Fibonacci Number in C++
- C++ program to find Nth Non Fibonacci Number
- Python Program for n-th Fibonacci number
- Python Program for nth Catalan Number
- Java program to print Fibonacci series of a given number.
- Program to find last two digits of Nth Fibonacci number in C++
- How to get the nth value of a Fibonacci series using recursion in C#?
- Validate a number as Fibonacci series number in JavaScript

Advertisements