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 (x_0, f(x_0)), at which f(x) has derivative f'(x_0) and second derivative f''(x_0).
We can write a parabola through (x_0, f(x_0)) as y= a(x- x_0)^2+ b(x- x_0)+ f(x_0). That has derivative, at x= x_0, y'= b and second dervative y''= 2a so that the "approximating parabola" is f''(x_0)(x- x_0)^2/2+ f'(x_0)(x- x_0)+ f(x_0). 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!