So I was playing around with the following:
Let $f_0(x) = x^2 - bx + c$.
If $f_n(x)$ has roots $p$ and $q$ with $p > q$, then let $f_{n+1}(x) = x^2 - px + q$.
The recurrence relation is rather simple: if we let $f_n(x) = x^2 - b_nx + c_n$, then $b_{n+1} + c_{n+1} = b_n$ and $b_{n+1}c_{n+1} = c_n$.
I wrote a program to iteratively find these quadratics until the discriminant is less than zero: in the case they do not terminate, the values of $b_n$ and $c_n$ always seem to converge such that $c_n = 0$. However, I couldn't figure out what $b_n$ converges to by inspection. Anyone has any ideas on how this works? I couldn't solve the recurrence relation very easily.
Here is the code: http://ideone.com/42sqow. For example, for $b_0 = 5$ and $c_0 = 1$, $b_n$ and $c_n$ converge to $4.7355610384$ and $0$, respectively.
Here's a start, I may figure some more things out and post here.
Take the two recurrence relations. $$(1) \quad b_{n+1}+c_{n+1}=b_{n}$$ and $$(2) \quad b_{n+1} \cdot c_{n+1}=c_{n}$$
Assume that both $b$ and $c$ converge as the number of iterations tends to infinity. This means that $b_{n+1}=b_{n}$ and $c_{n+1}=c_{n}$. Using this in the system of equations, we get.
$$b+c=b$$ $$\Rightarrow c=0$$ and $$b \cdot c=c$$ $$\Rightarrow b=k$$ Where $k$ is a constant. This is important because it means that I have half of the answer to this problem. $b$ equals something, but we now know that $c=0$ as the number of iterations approaches infinity. Of course, I assume that system of difference equations converges, but I don't think that's too big of an assumption to yield the above analysis invalid.
Perturbation Theory
I doubt this problem has an exact solution, however, given that we know the solution for $c_0=0$ and $b_0=b$ we can perturb $c_0$ to get a better estimate. Firstly, (1) and (2) are equivalent to
$$(3) \quad b_{n+1}={{b_n+\sqrt{{b_n}^2-4 \cdot c_n}} \over 2}$$ and $$(4) \quad c_{n+1}={{b_n-\sqrt{{b_n}^2-4 \cdot c_n}} \over 2}$$
Since we're assuming $c_0$ is small, at least for now, we can take (3) as an approximation for $b_{\infty}$...
For $b_0=5$ $c_0=x$, the graph looks like this...
And for $c_0=1$ we get $b_{\infty} \sim 4.79...$. Not bad for a first approximation. You can keep making better approximations, but the graph displayed above, is very representative of the general behavior. Also, if you expand the above out in series form, and keep iterating, the series should converge to the correct perturbation series. For instance, for the above first iteration, the first two terms for the Taylor expansion are $$b-{c \over b}$$ So these are most likely the first two terms of the perturbation series for the solution.
Let's look at the second convergent for $b_{\infty}$. I've already taken the liberty of simplifying the expression. $$b_{\infty} \sim b_2={{\sqrt{2 \cdot \left((b+4) \cdot \sqrt{b^2-4 \cdot c}+b^2-4 \cdot b-2 \cdot c \right)}+\sqrt{b^2-4 \cdot c}+b} \over 4}$$
As long as b is positive, the perturbation series for $b_{\infty}$ is now approximated by.
$$b_{\infty} \sim b-{c \over b}-{c \over {b^2}}-{{c^2} \over {b^3}}-{{2 \cdot c^2} \over {b^4}}-O(c^3)$$
For $b=5$ and $a=1$ we'll get $4.747... \ $ as an approximation to $b_{\infty}$, that's only about a $0.24$% error. I should also stress that this series expansion for $b_2$ contains terms from $b_1$. Thus, we can intuitively expect the series for $b_n$ to converge to the series for $b_{\infty}$ as n approaches infinity. In addition, most other answers miss the fact that you need a lot series terms to get a good estimate for the recursion. However, I've only used two iterations so far. Sometimes the easiest way to approximate something is just by using what's already given to you.