( -size 1100x742 gradient: -interpolate Bicubic -rotate 180 ( +size xc:#0c0126 xc:#19022a xc:#27032e xc:#43013a xc:#5f0046 xc:#7e003a xc:#9e002f xc:#ce1129 xc:#fe2323 xc:#f6441a xc:#ee6611 xc:#f68617 xc:#ffa61e -append ) -clut )
It is hard to test if you don't show your full command line. And I am not sure your syntax is proper for IM 6. Also you do not specify what version of IM you are using (and I presume windows)
Your command seems to work fine for me on IM 6.7.8.6 Q16 Mac OSX Snow Leopard (unix) with no banding that I can see:
convert \( -size 1100x742 gradient: -interpolate Bicubic -rotate 180 \
\( +size xc:#0c0126 xc:#19022a xc:#27032e xc:#43013a xc:#5f0046 xc:#7e003a \
xc:#9e002f xc:#ce1129 xc:#fe2323 xc:#f6441a xc:#ee6611 xc:#f68617 xc:#ffa61e -append \) -clut \) \
1tmp1.png
But I would have written it as follows, each of which produces a slightly different graduation of colors:
convert \( -size 1100x742 gradient: -rotate 180 \) \
\( -size 1x1 xc:#0c0126 xc:#19022a xc:#27032e xc:#43013a xc:#5f0046 xc:#7e003a \
xc:#9e002f xc:#ce1129 xc:#fe2323 xc:#f6441a xc:#ee6611 xc:#f68617 xc:#ffa61e -append \) \
-interpolate Bicubic -clut \
1tmp2.png
or
convert \( -size 1100x742 gradient:"gray(255)-gray(0)" -rotate 180 \) \
\( -size 1x1 xc:#0c0126 xc:#19022a xc:#27032e xc:#43013a xc:#5f0046 xc:#7e003a \
xc:#9e002f xc:#ce1129 xc:#fe2323 xc:#f6441a xc:#ee6611 xc:#f68617 xc:#ffa61e -append \) \
-interpolate Bicubic -clut \
1tmp3.png
Note that gradient: has undergone some changes in recent version. They can be either linear or non-linear (sRGB). That depends upon how you specify your values for the gradient colors. The default gradient: is non-linear as is gradient:"white-black" and gradient:"gray100-gray0", but gradient:"gray(255)-gray(0)" is linear as are gradients using -icc-color for grays.
see
http://www.imagemagick.org/script/color.php
Anthony can say for sure, but I think I recall that -interpolate bicubic may have changed the formula that is used for the bicubic.
P.S. see
viewtopic.php?f=2&t=21118&start=45#p86006
But I do not know if he means that bicubic is now using catrom or bicubic is deprecated and replaced by catrom. In any event, the list of interplation options does not list catrom.