k-th prime factor of a given number
Last Updated :
23 Jul, 2025
Given two numbers n and k, print k-th prime factor among all prime factors of n. For example, if the input number is 15 and k is 2, then output should be "5". And if the k is 3, then output should be "-1" (there are less than k prime factors).
Examples:
Input : n = 225, k = 2
Output : 3
Prime factors are 3 3 5 5. Second
prime factor is 3.
Input : n = 81, k = 5
Output : -1
Prime factors are 3 3 3 3
A Simple Solution is to first find prime factors of n. While finding prime factors, keep track of count. If count becomes k, we return current prime factor.
C++
// Program to print kth prime factor
# include<bits/stdc++.h>
using namespace std;
// A function to generate prime factors of a
// given number n and return k-th prime factor
int kPrimeFactor(int n, int k)
{
// Find the number of 2's that divide k
while (n%2 == 0)
{
k--;
n = n/2;
if (k == 0)
return 2;
}
// n must be odd at this point. So we can skip
// one element (Note i = i +2)
for (int i = 3; i <= sqrt(n); i = i+2)
{
// While i divides n, store i and divide n
while (n%i == 0)
{
if (k == 1)
return i;
k--;
n = n/i;
}
}
// This condition is to handle the case where
// n is a prime number greater than 2
if (n > 2 && k == 1)
return n;
return -1;
}
// Driver Program
int main()
{
int n = 12, k = 3;
cout << kPrimeFactor(n, k) << endl;
n = 14, k = 3;
cout << kPrimeFactor(n, k) << endl;
return 0;
}
Java
// JAVA Program to print kth prime factor
import java.io.*;
import java.math.*;
class GFG{
// A function to generate prime factors
// of a given number n and return k-th
// prime factor
static int kPrimeFactor(int n, int k)
{
// Find the number of 2's that
// divide k
while (n % 2 == 0)
{
k--;
n = n / 2;
if (k == 0)
return 2;
}
// n must be odd at this point.
// So we can skip one element
// (Note i = i +2)
for (int i = 3; i <= Math.sqrt(n); i = i + 2)
{
// While i divides n, store i
// and divide n
while (n % i == 0)
{
if (k == 1)
return i;
k--;
n = n / i;
}
}
// This condition is to handle the
// case where n is a prime number
// greater than 2
if (n > 2 && k == 1)
return n;
return -1;
}
// Driver Program
public static void main(String args[])
{
int n = 12, k = 3;
System.out.println(kPrimeFactor(n, k));
n = 14; k = 3;
System.out.println(kPrimeFactor(n, k));
}
}
/*This code is contributed by Nikita Tiwari.*/
Python3
# Python Program to print kth prime factor
import math
# A function to generate prime factors of a
# given number n and return k-th prime factor
def kPrimeFactor(n,k) :
# Find the number of 2's that divide k
while (n % 2 == 0) :
k = k - 1
n = n // 2
if (k == 0) :
return 2
# n must be odd at this point. So we can
# skip one element (Note i = i +2)
i = 3
while i <= math.sqrt(n) :
# While i divides n, store i and divide n
while (n % i == 0) :
if (k == 1) :
return i
k = k - 1
n = n // i
i = i + 2
# This condition is to handle the case
# where n is a prime number greater than 2
if (n > 2 and k == 1) :
return n
return -1
# Driver Program
n = 12
k = 3
print(kPrimeFactor(n, k))
n = 14
k = 3
print(kPrimeFactor(n, k))
# This code is contributed by Nikita Tiwari.
C#
// C# Program to print kth prime factor.
using System;
class GFG {
// A function to generate prime factors
// of a given number n and return k-th
// prime factor
static int kPrimeFactor(int n, int k)
{
// Find the number of 2's that
// divide k
while (n % 2 == 0)
{
k--;
n = n / 2;
if (k == 0)
return 2;
}
// n must be odd at this point.
// So we can skip one element
// (Note i = i +2)
for (int i = 3; i <= Math.Sqrt(n);
i = i + 2)
{
// While i divides n, store i
// and divide n
while (n % i == 0)
{
if (k == 1)
return i;
k--;
n = n / i;
}
}
// This condition is to handle the
// case where n is a prime number
// greater than 2
if (n > 2 && k == 1)
return n;
return -1;
}
// Driver Program
public static void Main()
{
int n = 12, k = 3;
Console.WriteLine(kPrimeFactor(n, k));
n = 14; k = 3;
Console.WriteLine(kPrimeFactor(n, k));
}
}
// This code is contributed by nitin mittal.
PHP
<?php
// PHP Program to print kth prime factor
// A function to generate prime
// factors of a given number n
// and return k-th prime factor
function kPrimeFactor($n, $k)
{
// Find the number of 2's
// that divide k
while ($n%2 == 0)
{
$k--;
$n = $n/2;
if ($k == 0)
return 2;
}
// n must be odd at this point.
// So we can skip one element
// (Note i = i +2)
for($i = 3; $i <= sqrt($n); $i = $i+2)
{
// While i divides n,
// store i and divide n
while ($n % $i == 0)
{
if ($k == 1)
return $i;
$k--;
$n = $n / $i;
}
}
// This condition is to
// handle the case where
// n is a prime number
// greater than 2
if ($n > 2 && $k == 1)
return $n;
return -1;
}
// Driver Code
{
$n = 12;
$k = 3;
echo kPrimeFactor($n, $k),"\n" ;
$n = 14;
$k = 3;
echo kPrimeFactor($n, $k) ;
return 0;
}
// This code contributed by nitin mittal.
?>
JavaScript
<script>
// Javascript Program to print kth prime factor
// A function to generate prime factors
// of a given number n and return k-th
// prime factor
function kPrimeFactor(n, k)
{
// Find the number of 2's that
// divide k
while (n % 2 == 0)
{
k--;
n = n / 2;
if (k == 0)
return 2;
}
// n must be odd at this point.
// So we can skip one element
// (Note i = i +2)
for (let i = 3; i <= Math.sqrt(n); i = i + 2)
{
// While i divides n, store i
// and divide n
while (n % i == 0)
{
if (k == 1)
return i;
k--;
n = n / i;
}
}
// This condition is to handle the
// case where n is a prime number
// greater than 2
if (n > 2 && k == 1)
return n;
return -1;
}
// Driver code
let n = 12, k = 3;
document.write(kPrimeFactor(n, k) + "<br/>");
n = 14; k = 3;
document.write(kPrimeFactor(n, k));
// This code is contributed by susmitakundugoaldanga.
</script>
Output:
3
-1
Time Complexity: O(?n log n)
Auxiliary Space: O(1)
An Efficient Solution is to use Sieve of Eratosthenes. Note that this solution is efficient when we need k-th prime factor for multiple test cases. For a single case, previous approach is better.
The idea is to do preprocessing and store least prime factor of all numbers in given range. Once we have least prime factors stored in an array, we can find k-th prime factor by repeatedly dividing n with least prime factor while it is divisible, then repeating the process for reduced n.
C++
// C++ program to find k-th prime factor using Sieve Of
// Eratosthenes. This program is efficient when we have
// a range of numbers.
#include<bits/stdc++.h>
using namespace std;
const int MAX = 10001;
// Using SieveOfEratosthenes to find smallest prime
// factor of all the numbers.
// For example, if MAX is 10,
// s[2] = s[4] = s[6] = s[10] = 2
// s[3] = s[9] = 3
// s[5] = 5
// s[7] = 7
void sieveOfEratosthenes(int s[])
{
// Create a boolean array "prime[0..MAX]" and
// initialize all entries in it as false.
vector <bool> prime(MAX+1, false);
// Initializing smallest factor equal to 2
// for all the even numbers
for (int i=2; i<=MAX; i+=2)
s[i] = 2;
// For odd numbers less than equal to n
for (int i=3; i<=MAX; i+=2)
{
if (prime[i] == false)
{
// s(i) for a prime is the number itself
s[i] = i;
// For all multiples of current prime number
for (int j=i; j*i<=MAX; j+=2)
{
if (prime[i*j] == false)
{
prime[i*j] = true;
// i is the smallest prime factor for
// number "i*j".
s[i*j] = i;
}
}
}
}
}
// Function to generate prime factors and return its
// k-th prime factor. s[i] stores least prime factor
// of i.
int kPrimeFactor(int n, int k, int s[])
{
// Keep dividing n by least prime factor while
// either n is not 1 or count of prime factors
// is not k.
while (n > 1)
{
if (k == 1)
return s[n];
// To keep track of count of prime factors
k--;
// Divide n to find next prime factor
n /= s[n];
}
return -1;
}
// Driver Program
int main()
{
// s[i] is going to store prime factor
// of i.
int s[MAX+1];
memset(s, -1, sizeof(s));
sieveOfEratosthenes(s);
int n = 12, k = 3;
cout << kPrimeFactor(n, k, s) << endl;
n = 14, k = 3;
cout << kPrimeFactor(n, k, s) << endl;
return 0;
}
Java
// Java program to find k-th prime factor
// using Sieve Of Eratosthenes. This
// program is efficient when we have
// a range of numbers.
class GFG
{
static int MAX = 10001;
// Using SieveOfEratosthenes to find smallest prime
// factor of all the numbers.
// For example, if MAX is 10,
// s[2] = s[4] = s[6] = s[10] = 2
// s[3] = s[9] = 3
// s[5] = 5
// s[7] = 7
static void sieveOfEratosthenes(int []s)
{
// Create a boolean array "prime[0..MAX]" and
// initialize all entries in it as false.
boolean[] prime=new boolean[MAX+1];
// Initializing smallest factor equal to 2
// for all the even numbers
for (int i = 2; i <= MAX; i += 2)
s[i] = 2;
// For odd numbers less than equal to n
for (int i = 3; i <= MAX; i += 2)
{
if (prime[i] == false)
{
// s(i) for a prime is the number itself
s[i] = i;
// For all multiples of current prime number
for (int j = i; j * i <= MAX; j += 2)
{
if (prime[i * j] == false)
{
prime[i * j] = true;
// i is the smallest prime factor for
// number "i*j".
s[i * j] = i;
}
}
}
}
}
// Function to generate prime factors
// and return its k-th prime factor.
// s[i] stores least prime factor of i.
static int kPrimeFactor(int n, int k, int []s)
{
// Keep dividing n by least
// prime factor while either
// n is not 1 or count of
// prime factors is not k.
while (n > 1)
{
if (k == 1)
return s[n];
// To keep track of count of prime factors
k--;
// Divide n to find next prime factor
n /= s[n];
}
return -1;
}
// Driver code
public static void main (String[] args)
{
// s[i] is going to store prime factor
// of i.
int[] s = new int[MAX + 1];
sieveOfEratosthenes(s);
int n = 12, k = 3;
System.out.println(kPrimeFactor(n, k, s));
n = 14;
k = 3;
System.out.println(kPrimeFactor(n, k, s));
}
}
// This code is contributed by mits
Python3
# python3 program to find k-th prime factor using Sieve Of
# Eratosthenes. This program is efficient when we have
# a range of numbers.
MAX = 10001
# Using SieveOfEratosthenes to find smallest prime
# factor of all the numbers.
# For example, if MAX is 10,
# s[2] = s[4] = s[6] = s[10] = 2
# s[3] = s[9] = 3
# s[5] = 5
# s[7] = 7
def sieveOfEratosthenes(s):
# Create a boolean array "prime[0..MAX]" and
# initialize all entries in it as false.
prime=[False for i in range(MAX+1)]
# Initializing smallest factor equal to 2
# for all the even numbers
for i in range(2,MAX+1,2):
s[i] = 2;
# For odd numbers less than equal to n
for i in range(3,MAX,2):
if (prime[i] == False):
# s(i) for a prime is the number itself
s[i] = i
# For all multiples of current prime number
for j in range(i,MAX+1,2):
if j*j> MAX:
break
if (prime[i*j] == False):
prime[i*j] = True
# i is the smallest prime factor for
# number "i*j".
s[i*j] = i
# Function to generate prime factors and return its
# k-th prime factor. s[i] stores least prime factor
# of i.
def kPrimeFactor(n, k, s):
# Keep dividing n by least prime factor while
# either n is not 1 or count of prime factors
# is not k.
while (n > 1):
if (k == 1):
return s[n]
# To keep track of count of prime factors
k-=1
# Divide n to find next prime factor
n //= s[n]
return -1
# Driver Program
# s[i] is going to store prime factor
# of i.
s=[-1 for i in range(MAX+1)]
sieveOfEratosthenes(s)
n = 12
k = 3
print(kPrimeFactor(n, k, s))
n = 14
k = 3
print(kPrimeFactor(n, k, s))
# This code is contributed by mohit kumar 29
C#
// C# program to find k-th prime factor
// using Sieve Of Eratosthenes. This
// program is efficient when we have
// a range of numbers and we
using System;
class GFG
{
static int MAX = 10001;
// Using SieveOfEratosthenes to find
// smallest prime factor of all the
// numbers. For example, if MAX is 10,
// s[2] = s[4] = s[6] = s[10] = 2
// s[3] = s[9] = 3
// s[5] = 5
// s[7] = 7
static void sieveOfEratosthenes(int []s)
{
// Create a boolean array "prime[0..MAX]"
// and initialize all entries in it as false.
bool[] prime = new bool[MAX + 1];
// Initializing smallest factor equal
// to 2 for all the even numbers
for (int i = 2; i <= MAX; i += 2)
s[i] = 2;
// For odd numbers less than equal to n
for (int i = 3; i <= MAX; i += 2)
{
if (prime[i] == false)
{
// s(i) for a prime is the
// number itself
s[i] = i;
// For all multiples of current
// prime number
for (int j = i; j * i <= MAX; j += 2)
{
if (prime[i * j] == false)
{
prime[i * j] = true;
// i is the smallest prime factor
// for number "i*j".
s[i * j] = i;
}
}
}
}
}
// Function to generate prime factors
// and return its k-th prime factor.
// s[i] stores least prime factor of i.
static int kPrimeFactor(int n, int k, int []s)
{
// Keep dividing n by least prime
// factor while either n is not 1
// or count of prime factors is not k.
while (n > 1)
{
if (k == 1)
return s[n];
// To keep track of count of
// prime factors
k--;
// Divide n to find next prime factor
n /= s[n];
}
return -1;
}
// Driver Code
static void Main()
{
// s[i] is going to store prime
// factor of i.
int[] s = new int[MAX + 1];
sieveOfEratosthenes(s);
int n = 12, k = 3;
Console.WriteLine(kPrimeFactor(n, k, s));
n = 14;
k = 3;
Console.WriteLine(kPrimeFactor(n, k, s));
}
}
// This code is contributed by mits
PHP
<?php
// PHP program to find k-th prime factor
// using Sieve Of Eratosthenes. This program
// is efficient when we have a range of numbers.
$MAX = 10001;
// Using SieveOfEratosthenes to find
// smallest prime factor of all the numbers.
// For example, if MAX is 10,
// s[2] = s[4] = s[6] = s[10] = 2
// s[3] = s[9] = 3
// s[5] = 5
// s[7] = 7
function sieveOfEratosthenes(&$s)
{
global $MAX;
// Create a boolean array "prime[0..MAX]"
// and initialize all entries in it as false.
$prime = array_fill(0, $MAX + 1, false);
// Initializing smallest factor equal
// to 2 for all the even numbers
for ($i = 2; $i <= $MAX; $i += 2)
$s[$i] = 2;
// For odd numbers less than equal to n
for ($i = 3; $i <= $MAX; $i += 2)
{
if ($prime[$i] == false)
{
// s(i) for a prime is the
// number itself
$s[$i] = $i;
// For all multiples of current
// prime number
for ($j = $i; $j * $i <= $MAX; $j += 2)
{
if ($prime[$i * $j] == false)
{
$prime[$i * $j] = true;
// i is the smallest prime
// factor for number "i*j".
$s[$i * $j] = $i;
}
}
}
}
}
// Function to generate prime factors and
// return its k-th prime factor. s[i] stores
// least prime factor of i.
function kPrimeFactor($n, $k, $s)
{
// Keep dividing n by least prime
// factor while either n is not 1
// or count of prime factors is not k.
while ($n > 1)
{
if ($k == 1)
return $s[$n];
// To keep track of count of
// prime factors
$k--;
// Divide n to find next prime factor
$n = (int)($n / $s[$n]);
}
return -1;
}
// Driver Code
// s[i] is going to store prime
// factor of i.
$s = array_fill(0, $MAX + 1, -1);
sieveOfEratosthenes($s);
$n = 12;
$k = 3;
print(kPrimeFactor($n, $k, $s) . "\n");
$n = 14;
$k = 3;
print(kPrimeFactor($n, $k, $s));
// This code is contributed by chandan_jnu
?>
JavaScript
<script>
// Javascript program to find k-th prime factor
// using Sieve Of Eratosthenes. This
// program is efficient when we have
// a range of numbers.
var MAX = 10001;
// Using SieveOfEratosthenes to find smallest prime
// factor of all the numbers.
// For example, if MAX is 10,
// s[2] = s[4] = s[6] = s[10] = 2
// s[3] = s[9] = 3
// s[5] = 5
// s[7] = 7
function sieveOfEratosthenes(s)
{
// Create a boolean array "prime[0..MAX]" and
// initialize all entries in it as false.
prime=Array.from({length: MAX+1}, (_, i) => false);
// Initializing smallest factor equal to 2
// for all the even numbers
for (i = 2; i <= MAX; i += 2)
s[i] = 2;
// For odd numbers less than equal to n
for (i = 3; i <= MAX; i += 2)
{
if (prime[i] == false)
{
// s(i) for a prime is the number itself
s[i] = i;
// For all multiples of current prime number
for (j = i; j * i <= MAX; j += 2)
{
if (prime[i * j] == false)
{
prime[i * j] = true;
// i is the smallest prime factor for
// number "i*j".
s[i * j] = i;
}
}
}
}
}
// Function to generate prime factors
// and return its k-th prime factor.
// s[i] stores least prime factor of i.
function kPrimeFactor(n , k , s)
{
// Keep dividing n by least
// prime factor while either
// n is not 1 or count of
// prime factors is not k.
while (n > 1)
{
if (k == 1)
return s[n];
// To keep track of count of prime factors
k--;
// Divide n to find next prime factor
n /= s[n];
}
return -1;
}
// Driver code
// s[i] is going to store prime factor
// of i.
var s = Array.from({length: MAX + 1}, (_, i) => 0);
sieveOfEratosthenes(s);
var n = 12, k = 3;
document.write(kPrimeFactor(n, k, s)+"<br>");
n = 14;
k = 3;
document.write(kPrimeFactor(n, k, s));
// This code contributed by shikhasingrajput
</script>
Output:
3
-1
Time Complexity: O(n*log(log(n)))
Auxiliary Space: O(n)
Similar Reads
Basics & Prerequisites
Data Structures
Array Data StructureIn this article, we introduce array, implementation in different popular languages, its basic operations and commonly seen problems / interview questions. An array stores items (in case of C/C++ and Java Primitive Arrays) or their references (in case of Python, JS, Java Non-Primitive) at contiguous
3 min read
String in Data StructureA string is a sequence of characters. The following facts make string an interesting data structure.Small set of elements. Unlike normal array, strings typically have smaller set of items. For example, lowercase English alphabet has only 26 characters. ASCII has only 256 characters.Strings are immut
2 min read
Hashing in Data StructureHashing is a technique used in data structures that efficiently stores and retrieves data in a way that allows for quick access. Hashing involves mapping data to a specific index in a hash table (an array of items) using a hash function. It enables fast retrieval of information based on its key. The
2 min read
Linked List Data StructureA linked list is a fundamental data structure in computer science. It mainly allows efficient insertion and deletion operations compared to arrays. Like arrays, it is also used to implement other data structures like stack, queue and deque. Hereâs the comparison of Linked List vs Arrays Linked List:
2 min read
Stack Data StructureA Stack is a linear data structure that follows a particular order in which the operations are performed. The order may be LIFO(Last In First Out) or FILO(First In Last Out). LIFO implies that the element that is inserted last, comes out first and FILO implies that the element that is inserted first
2 min read
Queue Data StructureA Queue Data Structure is a fundamental concept in computer science used for storing and managing data in a specific order. It follows the principle of "First in, First out" (FIFO), where the first element added to the queue is the first one to be removed. It is used as a buffer in computer systems
2 min read
Tree Data StructureTree Data Structure is a non-linear data structure in which a collection of elements known as nodes are connected to each other via edges such that there exists exactly one path between any two nodes. Types of TreeBinary Tree : Every node has at most two childrenTernary Tree : Every node has at most
4 min read
Graph Data StructureGraph Data Structure is a collection of nodes connected by edges. It's used to represent relationships between different entities. If you are looking for topic-wise list of problems on different topics like DFS, BFS, Topological Sort, Shortest Path, etc., please refer to Graph Algorithms. Basics of
3 min read
Trie Data StructureThe Trie data structure is a tree-like structure used for storing a dynamic set of strings. It allows for efficient retrieval and storage of keys, making it highly effective in handling large datasets. Trie supports operations such as insertion, search, deletion of keys, and prefix searches. In this
15+ min read
Algorithms
Searching AlgorithmsSearching algorithms are essential tools in computer science used to locate specific items within a collection of data. In this tutorial, we are mainly going to focus upon searching in an array. When we search an item in an array, there are two most common algorithms used based on the type of input
2 min read
Sorting AlgorithmsA Sorting Algorithm is used to rearrange a given array or list of elements in an order. For example, a given array [10, 20, 5, 2] becomes [2, 5, 10, 20] after sorting in increasing order and becomes [20, 10, 5, 2] after sorting in decreasing order. There exist different sorting algorithms for differ
3 min read
Introduction to RecursionThe process in which a function calls itself directly or indirectly is called recursion and the corresponding function is called a recursive function. A recursive algorithm takes one step toward solution and then recursively call itself to further move. The algorithm stops once we reach the solution
14 min read
Greedy AlgorithmsGreedy algorithms are a class of algorithms that make locally optimal choices at each step with the hope of finding a global optimum solution. At every step of the algorithm, we make a choice that looks the best at the moment. To make the choice, we sometimes sort the array so that we can always get
3 min read
Graph AlgorithmsGraph is a non-linear data structure like tree data structure. The limitation of tree is, it can only represent hierarchical data. For situations where nodes or vertices are randomly connected with each other other, we use Graph. Example situations where we use graph data structure are, a social net
3 min read
Dynamic Programming or DPDynamic Programming is an algorithmic technique with the following properties.It is mainly an optimization over plain recursion. Wherever we see a recursive solution that has repeated calls for the same inputs, we can optimize it using Dynamic Programming. The idea is to simply store the results of
3 min read
Bitwise AlgorithmsBitwise algorithms in Data Structures and Algorithms (DSA) involve manipulating individual bits of binary representations of numbers to perform operations efficiently. These algorithms utilize bitwise operators like AND, OR, XOR, NOT, Left Shift, and Right Shift.BasicsIntroduction to Bitwise Algorit
4 min read
Advanced
Segment TreeSegment Tree is a data structure that allows efficient querying and updating of intervals or segments of an array. It is particularly useful for problems involving range queries, such as finding the sum, minimum, maximum, or any other operation over a specific range of elements in an array. The tree
3 min read
Pattern SearchingPattern searching algorithms are essential tools in computer science and data processing. These algorithms are designed to efficiently find a particular pattern within a larger set of data. Patten SearchingImportant Pattern Searching Algorithms:Naive String Matching : A Simple Algorithm that works i
2 min read
GeometryGeometry is a branch of mathematics that studies the properties, measurements, and relationships of points, lines, angles, surfaces, and solids. From basic lines and angles to complex structures, it helps us understand the world around us.Geometry for Students and BeginnersThis section covers key br
2 min read
Interview Preparation
Practice Problem