Camacho numbers are positive integers that are equal to
the sum of their digits raised to each power from 1 to the number of
digits. For a Camacho number
For example, 336 is a Camacho number because
Write a function camacho_term that takes two integers
Write a function camacho_sum that takes an integer
Write a function iscamacho that takes an integer
Write a function next_camacho that takes an integer
>>> camacho_term(336, 1) 12 >>> camacho_term(336, 2) 54 >>> camacho_term(336, 3) 270 >>> camacho_sum(336) 336 >>> camacho_sum(4538775) 4538775 >>> camacho_sum(183670618569) 499096875990 >>> iscamacho(336) True >>> iscamacho(4538775) True >>> iscamacho(183670618569) False >>> next_camacho(60) 90 >>> next_camacho(4537541) 4538775 >>> next_camacho(183670618569) 183670618662