| $f(0) = $ | $-17,$ | 
| $f(n) = $ | $f(n - 1) + 8n - 2\; \ \text{for all}$ $\text{integers}\ n \geq 1.$ | 
			$\mathbf{Algorithm}\ \Fib(n)\mathrm{:}$ 
			$\mathbf{if}\ n = 0\ \mathrm{or}\ n = 1$ 
			$\mathbf{then}\ f = n$ 
			$\mathbf{else}\ f = \Fib(n - 1) + \Fib(n - 2)$ 
			$\mathbf{endif};$ 
			$\mathbf{return}\ f$ 
		
  $\mathbf{Algorithm}$ $\ThreeHeadsOrThreeTails(k)$: 
  $\quad \text{flip a fair coin three times};$ 
  $\quad \mathbf{if}\ \text{the result is $HHH$ or $TTT$}$ 
  $\quad \quad \mathbf{then}\ \mathrm{return}\ k$ 
  $\quad \mathbf{else}$ 
  $\quad \quad \ThreeHeadsOrThreeTails(k + 1)$ 
  $\quad \mathbf{endif}$