Try the following:
parallel "echo hello {}" ::: $(awk 'BEGIN {for(i=0; i<=16; i++) printf 2**i" "}')
awkused to print a list of degrees 2, which will then be used parallel.
As an alternative:
parallel "echo hello {}" ::: $(printf '%s\n' 2^{0..16} | bc | tr '\n' ' ')
1 16 x^2, printf, . bc , tr .