returns the sequence of prime factors of an integer
s = factorize(n)
positive integer or zero
sequence of numbers
factorize(n)
returns, in increasing order, the sequence of
prime factors of n
with
n
a positive integer or zero. If a number is a repeated prime factor of
n
, it is returned multiple times in the sequence.