Just as a side note, your question causes me to infer that your autonumber has a purpose. Beware of this because if there is any chance that the number has a purpose, you must compare autonumber behavior to the business model that defines the purpose.
In general, autonumbers are ARBITRARY unique numbers guaranteed to not already exist as an index in the table that uses them. They are not guaranteed to be contiguous or even close to sequential. They are most often usable as hidden links between tables.
One valid use you COULD assign to an autonumber is to report it to your users after the fact as a "transaction confirmation number." I.e. once it has been assigned, if the customer ever wants to point you to that transaction again, the number is then useful. And this number DOES NOT REQUIRE either the SEQUENTIAL or CONTIGUOUS attributes. It's just an arbitrary number.
If you have no special formats for purchase order numbers, you can use an after-the-fact autonumber to report to your supplier that the order can later be referenced by PO Number xxxxxx (the autonumber). This is again using the number as a reference to a historical event.
If EVER your autonumber needs a specific format or structure, it can only need such because you are using it for something that isn't quite like the cases I just described.