I am using an ADC (ltc2378) with a resolution of 20 bits.
Based on the datasheet this resolution corresponds to an LSB calculated by the equation ($2 V_{\text{ref}}/2^{20}$), i.e., 9.536 µV.
In order to achieve a better resolution of 24 bits as described in this document Silicon Labs Oversampling I have to oversample at a frequency
$$f_{\text{oversample}} = 4^{n_{\text{bits, additional}}} f_s$$
Assuming that the original sampling frequency of the signal is 62.5 Hz and we oversample to achieve 4 additional bits we will have to sample it at 16000 samples per second.
After oversampling the simple method of averaging is considered.
Assuming that we have an accumulator of at most 34 bits width ($2^{20}\cdot 16000$), from the generated result we are discarding the 10 bits by simply shifting on the right. My question is what it would be the newly achieved LSB after this process.
$2 V_{\text{ref}}/2^{24}$ or something else?