Hi all,
The behaviour of BitShiftRight applied to a list changes when the list length exceeds 100000:
In[41]:= u0 = ConstantArray[1234, 100000];
u1 = ConstantArray[1234, 100001];
In[47]:= v0 = BitShiftRight[u0, 4];
v1 = BitShiftRight[u1, 4];
In[49]:= v0[[1 ;; 5]]
Out[49]= {77, 77, 77, 77, 77}
In[50]:= v1[[1 ;; 5]]
Out[50]= {19744, 19744, 19744, 19744, 19744}
Is this a bug? I'm using 10.0.0.0 on Linux x86-64.