Write a function powerthree that, given a non-negative number n, returns 3n ( 3^n, or "3 raised topower n") recursively, assuming 3n is something that can be represented as an integer. do not use a loop, and do not use the character '*' anywhere in your code.