Creation of a sequence includes the syntax as follows, with n representing an integer:

CREATE SEQUENCE name
INCREMENT BY n
START WITH n
MAXVALUE n
CYCLE
CACHE n;