OFFSET
0,4
COMMENTS
Pierrot, Rossin, and West were first to give a formula and the alternate characterization: all permutations in S_n except the alternating permutations in which the elements in odd positions form a decreasing sequence, and the elements in even positions also form a decreasing sequence.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..449
Steven Linton, James Propp, Tom Roby, and Julian West, Equivalence classes of permutations under various relations generated by constrained transpositions, 2011 arXiv:1111.3920 [math.CO], 2011; J. Int. Seq. 15 (2012) #12.9.1.
A. Pierrot, D. Rossin, and J. West, Adjacent transformations in permutations, FPSAC 2011, Discrete Math. Theor. Comput. Sci. Proc., 2011.
FORMULA
a(n) = 1 for n<3, otherwise: a(n) = n!-C([(n-1)/2]-C([n/2]), where [x] is the floor function and C(n) denotes the n-th Catalan number (A000108).
MAPLE
C:= n-> binomial(2*n, n)/(n+1):
a:= n-> `if`(n<3, 1, n!-C(floor((n-1)/2))-C(floor(n/2))):
seq (a(n), n=0..30); # Alois P. Heinz, May 20 2012
MATHEMATICA
Join[{1, 1, 1}, Table[n!-CatalanNumber[Floor[(n-1)/2]]-CatalanNumber[ Floor[ n/2]], {n, 3, 30}]] (* Harvey P. Dale, Dec 31 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Tom Roby, May 15 2012
STATUS
approved