Tagged Questions
3
votes
4answers
942 views
How to calculate all the prime factors of lcm of n integers?
I have n integers stored in an array a, say a[0],a[1],.....,a[n-1] where each a[i] <= 10^12 and n <100 . Now,I need to find all the prime factors of the LCM of these n integers i.e., LCM of ...