If you want to use numbers in a sequence, define a new sequence with something like
CREATE SEQUENCE public.your_sequence
INCREMENT 1
START 1
MINVALUE 1
;
and then alter the table to use the sequence for the id:
ALTER TABLE ONLY table ALTER COLUMN id SET DEFAULT nextval('your_sequence'::regclass);