I'm applying Cauchy bound to the example from this http://www.numdam.org/item/M2AN_1990__24_6_693_0.pdf paper, and I'm having the results different from the written one. I may have some misunderstanding of either Graeffe's method or Cauchy bound https://en.wikipedia.org/wiki/Geometrical_properties_of_polynomial_roots
Cauchy bound:
The example from the paper:

So, applying Cauchy bound:
For P: max(a_k) = 6, Cauchy bound = 7
For P1: max(a_k) = 52, Cauchy bound = (52+1)^(1/2) = 7.28011
For P2: max(a_k) = 2951, Cauchy bound = (2951+1)^(1/4)= 7.37105
For P3: max(a_k) = 31 116 689, Cauchy bound = 31 116 689 ^ (1/8) = 8.6422
For P4: max(a_k) = 36 706 467 938 304, Cauchy bound = 36 706 467 938 304 ^ (1/16) = 7.04363
I'm ignoring +1 in bound starting from P3. The power of root I'm using is due to Greaffe's method powering.
The result I have is different from what's written in the paper, so what I'm doing wrong?

The root bounds $$ R=1+\max_{k<n}\left|\frac{a_k}{a_n}\right|~~\text{ and }~~ R=\max\left(1,\frac{|a_{n-1}|+...+|a_1|+|a_0|}{|a_n|}\right) $$ and similar are upper bounds for the first and only positive root of $$ q(R)=|a_n|R^n-|a_{n-1}|R^{n-1}-...-|a_1|R-|a_0|. $$ The bound called "Cauchy" and used in the article seems to be exactly this root.
Computing this root via Newton is relatively simple as there is only one sign variation in the coefficient sequence and $\tilde q(S)=-S^nq(1/S)$ is convex and increasing from the value $\tilde q(0)=-1$. The sequence of Newton iterates is thus falling from the second element on. One of the simple bounds gives a good starting value.
which prints
Rounding up the bound for the 4th iteration gives indeed $\rho<2.7701<2.771$.