- prime-exponents zprocedure
- z
- integer
Returns a list of the exponents of in a factorization of the integer z.
> (define z (* 2 2 2 3 5 5)) > (prime-divisors z) (2 3 5) > (prime-exponents z) (3 1 2)
Returns a list of the exponents of in a factorization of the integer z.
> (define z (* 2 2 2 3 5 5)) > (prime-divisors z) (2 3 5) > (prime-exponents z) (3 1 2)