I don't know of any that are commonly used but it's not hard to extend the basic idea.
In "Newton' method", we approximate the function by its tangent line at a given point, and determine where that line crosses y= 0.
We could, as well, approximate the function by a parabola that (1) passes through the given point, (2) has the same slope their, and (3) has the same second derivative.
That is, to solve f(x)= 0, start with some given point [itex](x_0, f(x_0))[/itex], at which f(x) has derivative [itex]f'(x_0)[/itex] and second derivative [itex]f''(x_0)[/itex].
We can write a parabola through [itex](x_0, f(x_0))[/itex] as [itex]y= a(x- x_0)^2+ b(x- x_0)+ f(x_0)[/itex]. That has derivative, at [itex]x= x_0[/itex], [itex]y'= b[/itex] and second dervative [itex]y''= 2a[/itex] so that the "approximating parabola" is [itex]f''(x_0)(x- x_0)^2/2+ f'(x_0)(x- x_0)+ f(x_0)[/itex]. Set that equal to 0 and solve for x to get the next x at which to approximate.
But the fact is that there are just some "approximating" methods that are just so good, any improvement by a "better" approximation just isn't worth the additional work. Newton's method is one of those!