In writing a class library for some of the common classes I use in my fractal programs something occurred to me.
This is the polynomial I would like to discuss. I hope my notation is correct. I would hate to make a fool of my self again today.

I was writing the code for a cubic Mandelbrot and discovered that I can derive a standard Mandelbrot, a Julia, a cubic Mandelbrot, and many other variations of these classic fractals by simply using different variables for i, C, a0, a1, a2 etc.
For example:
Mandelbrot i=2, a2 = 1, a1 = 1, a0 = 0, C=0
Julia i=2, a2 = 1, a1 =0, a0=0, C= -1+0i
Cubic Mandelbrot i=3 a3=1, a2 = 0, a1 = 1, a0 = 0, C=0
Im sure you all get the idea.
Ive found a lot of interesting variations using different values as well.
I do have one question I was hoping someone could answer.
Is there a name for this general expression?