OFFSET
0,3
LINKS
Wikipedia, Permutation
EXAMPLE
a(4) = 6: 1234, 2314, 2341, 3214, 3241, 4321.
MAPLE
b:= proc(s, x, y) option remember; `if`(s={}, 1, add(
`if`(x=0 or y=0 or abs(x-y)<=abs(y-j),
b(s minus {j}, y, j), 0), j=s))
end:
a:= n-> b({$1..n}, 0$2):
seq(a(n), n=0..16);
MATHEMATICA
b[s_, x_, y_] := b[s, x, y] = If[s == {}, 1, Sum[If[x == 0 || y == 0 || Abs[x - y] <= Abs[y - j], b[s ~Complement~ {j}, y, j], 0], {j, s}]];
a[n_] := b[Range[n], 0, 0];
Table[Print[n, " ", a[n]]; a[n], {n, 0, 20}] (* Jean-François Alcover, Sep 08 2021, after Alois P. Heinz *)
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Alois P. Heinz, Nov 05 2020
EXTENSIONS
a(27)-a(34) from Bert Dobbelaere, Nov 15 2020
STATUS
approved