I would like to reproduce the plot shown in fig(b) from the link.
How can I obtain yellow, red, green and blue using the command? Let's say there are 4 roots in total. In this case roots will be {2, 1 + i,1 - i, -3 }. I'm trying plot something like in figure (b) of the above link by using the codes in a similar post.
List @@@ Table[ColorData[45, k], {k, 1, Length[roots]}];
Thanks, RM

rootsis left undefined – Mar 11 '22 at 19:20rootswill be finite distinct numbers (for instance, four numbers). – R. Madureira Mar 11 '22 at 19:21roots = {{1, 2, 3, 4, 5, 6}}thenLength[roots]is6. On the other hand, ifroots = {{1, 2, 3, 4, 5, 6}, {1, 2, 3, 4, 5, 6}}thenLength[roots]is2. On top of that, different numbers will result in different plots. – Mar 11 '22 at 19:23rootswill be{2, 1 + i,1 - i, -3 }. I'm trying plot something like in figure (b) of the above link by using the codes in https://mathematica.stackexchange.com/questions/15047/how-to-draw-fractal-images-of-iteration-functions-on-the-riemann-sphere – R. Madureira Mar 11 '22 at 19:28ColorData[45] /@ Range[4]. For the named colors use{Yellow, Red, Green, Blue}– Bob Hanlon Mar 11 '22 at 21:17