h(1) h(2) h(3) h(0) function h(n) { console.log(7*(5**n)+9+g(n)) } function g(n) { if (n == 0) { return 0 } return 9*7*(5**(n-1))+g(n-1) }