Those are the same. tables display double precision numbers according to your current "format" setting, and you currently have "format long g" in effect. long g displays integral values with up to 15 digits as integers but switches to scientific notation for 16 digits.
If you want you could take int64() or uint64() of the column, or you could
datetime(T.Timestampmicroseconds/1e6, 'convertfrom', 'posixtime')


