I'm very much aware of the
$$\pi = 4 \left(1 - \frac13 + \frac15 - \frac17 + \frac19 -\cdots \right)$$ and
$$\pi = \sqrt{6\left(1 + \frac14 + \frac19 + \frac{1}{16}+ \cdots \right)}$$
and even less common $$\frac\pi2 = \frac21 \cdot \frac23 \cdot \frac43 \cdot \frac45 \cdot \frac65 \cdot \frac67 \cdot \frac87 \cdot \cdots$$
What I'm wondering is if there is a RECURSIVE (not summative) way to find $\pi$.
An example for phi ($\phi$) is: $$f(1) = 1; \quad f(n) = 1+\frac1{f(n-1)}$$
By recursive function, I mean a function that calculates its next value based on the current or previous (or even further back) value.