show/hide this revision's text 3 added 5 characters in body

Your input is described by f(x) => x + 9, or more generally f(x) => n - 1 + x as x starts at 1.

You link to another question which describes a function r(x) which maps x to a shuffled value, 0 <= r(x) < <= m.

so f(r(x) + 1) or (r(x) + n)should give you the value you want.

For small m, you also should be able to find seeds of a standard random number generator by trail and error which then generate mm+1 distinct values when taken mod mm+1 if you don't want to code your own generator.

show/hide this revision's text 2 or find a seed for a normal generator.

Your input is described by f(x) => x + 9, or more generally f(x) => n - 1 + x as x starts at 1.

You link to another question which describes a function r(x) which maps x to a shuffled value, 0 <= r(x) < m.

so f(r(x) + 1) or (r(x) + n)should give you the value you want.

For small m, you also should be able to find seeds of a standard random number generator by trail and error which then generate m distinct values when taken mod m if you don't want to code your own generator.

show/hide this revision's text 1

Your input is described by f(x) => x + 9, or more generally f(x) => n - 1 + x as x starts at 1.

You link to another question which describes a function r(x) which maps x to a shuffled value, 0 <= r(x) < m.

so f(r(x) + 1) should give you the value you want.