53 bits isn't 2 ^ 53.
For example: 2 bits has a limit of 3 (&H11). 8 bits has a limit of 255 (&H11111111).
The limit is number of bits ^ 2 - 1. (n ^ 2 - 1)
For example: 2 bits has a limit of 3 (&H11). 8 bits has a limit of 255 (&H11111111).
The limit is number of bits ^ 2 - 1. (n ^ 2 - 1)