Create a function that takes a positive integer number (one of base2, base8, or base16) and converts the integer into the given base and returns a string using recursion.
integer_to_string(10 , 2) ➞ "1010"
# Base = 2
integer_to_string(1642 , 8) ➞ "3152"
# Base = 8
integer_to_string(212 , 16) ➞ "d4"
# Base = 16