The only option would be to reset/restart the sequence using the
ALTER SEQUENCE statement. But then you would loose all guarantees that the sequence values are unique.
p.s: If you want to rely on sequences to have no gaps in the data being produced, sequences are the wrong thing anyway. Due to the internal caching, it may happen that sequence values are available for a transaction but never used by it. Those values will not be used by other transactions either.