The code below the draw(n - 1) isn't recursive... the call to draw(n - 1) is the recursion.
Sometimes, it can be helpful to invert recursion. Think about what draw(0) would be and write it down... then compute draw(1) using the value you previously computed for draw(0).