Prime power Checks if a number is a prime power. Syntax prime_power(Integer) Description prime_power(Integer) Given an integer , returns false if the input is not a prime power. If indeed it is a prime power, returns a list with two elements: the first one is the prime and the second one is the power. Related functions Prime, Prime?, Factor Table of Contents Syntax Description Related functions