In books on Fields, an extension field polynomial representation uses the notation where right most bit is considered as $a_0$ & left most is $a_{n-1}$
For e.g. in $F_{2^4}$
$11 = 1,0,1,1 = x^3 + x + 1$
i.e. it's read left to right as $a_{n-1}x^{n-1} + ... + a_0 x^0$
While in coding theory books, in the chapter on cyclic codes, a cyclic codeword $a_0, .., a_{n-1}$ is represented as the polynomial $a_0x^0 +...+ a_{n-1}x^{n-1}$
i.e. a codeword $1,0,1,1$ would be represented as the polynomial $1 + x^2 + x^3$.
I understand this may be purely notational but was wondering if there is a reason.