By default, autonumber is a long integer that increments by 1. A long integer uses 4 bytes.
Long Interger, incremental: 0 to 2,147,483,647
(and if you ever reach this number, sequentially, it is time to move to a more robust database)
You can also use...
Long Integer, random: -2,147,483,648 to 2,147,483,647
Lastly, you can also use "Replication ID" as an autonumber (usually used with a master database and replica databases) The replication ID or globally unique identifier that uses 16 bytes which is huuuggggeee. An example... {363AD1A9-2C71-47B9-8F93-B9FD0D555EF6}
Richard