''' Write a function that computes the prime factorization of a given integer n. The function should return the prime factors in a list. Ensure that the function works for any integer greater than 1. Example output: prime_factors(28) # Returns [2, 2, 7] ''' # Your code here