You're using Postgres? You can manipulate your sequence by using "select setval('sequence', 11);" to set it's value to 11.
Or, instead of using a serial type, create sequence with the properties that you want, then set the default of the column you create to be nextval('sequence');
Chirs