The I2C device address only uses seven bits, then the R/W bit.
Some things show the address left-aligned (as with the register bits in the datasheet), some things show it right-aligned then shift it and add in the R/W bit as part of the I2C subroutines...
The 0x20 address is right-aligned, so the range is 0-127.
When transmitted and the R/W bit added in, it becomes 0x40 or 0x41.
It can be confusing when trying to cross reference addresses and literal data values.