Mandelbrot/Julia hybrids


Consider the Mandelbrot and Julia formulas:
zn+1=zn2 + cm
zn+1=zn2 + cj
Where cm is changed for each pixel when calculating the Mandelbrot image and cj is constant for each pixel when calculating Julia images.
The hybrids below uses different methods to mix the two c's together in one picture.

Part 1
Alternates between using cm and cj using different patterns for each iteration.

Part 2
c = (1 - k) * cm + k * cj, With k = 0 at iteration 1 and k = 1 at maximum iteration.

Part 3
c = (1 - k) * cm + k * cj, With k = 0.5 * sin(period * iteration) + 0.5.
Several different periods were used.

Part 4
c = 0.5 * cm + 0.5 * cj