Greatest Prime Factor -- from Wolfram MathWorld
https://mathworld.wolfram.com › ...Greatest Prime Factor ... , 3, ..., the first few are 2, 3, 2, 5, 3, 7, 2, 3, 5, 11, 3, 13, 7, 5, ... (OEIS A006530). The greatest multiple prime factors for ...
C Program for Find largest prime factor of a number?
www.tutorialspoint.com › c-program-for-findJul 26, 2019 · In this section, we will see how we can get the largest prime factor of a number in an efficient way. There is a number say n = 1092, we have to get the largest prime factor of this. The prime factors of 1092 are 2, 2, 3, 7, 13. So the largest is 13. To solve this problem, we have to follow this rule −. When the number is divisible by 2, then store 2 as largest, and divide the number by 2 repeatedly.