login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A161122 Number of cycles with entries of the same parity in all fixed-point-free involutions of {1,2,...,2n}. 4
0, 0, 2, 18, 180, 2100, 28350, 436590, 7567560, 145945800, 3101348250, 72020198250, 1814908995900, 49332526343100, 1438865351673750, 44826189802143750, 1485668004871050000, 52196469237802890000, 1937793920453432291250, 75801938653031321981250, 3116301922402398792562500 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n(n-1)(2n-3)!!.
a(n) = Sum_{k>=0} k*A161121(n,k).
D-finite with recurrence (-n+2)*a(n) +n*(2*n-3)*a(n-1)=0. - R. J. Mathar, Jul 26 2022
EXAMPLE
a(2)=2 because in the 3 permutations (12)(34), (13)(24), (14)(23) we have a total of 2 cycles with entries of the same parity.
MAPLE
seq(n*(n-1)*(product(2*j-1, j = 1 .. n-1)), n = 0 .. 18);
MATHEMATICA
Table[n (n - 1) (2 n -3)!!, {n, 0, 20}] (* Vincenzo Librandi, Jul 21 2017 *)
PROG
(Magma) DoubleFactorial:=func< n | &*[n..2 by -2] >; [ n*(n-1)*DoubleFactorial(2*n-3): n in [0..22]]; // Vincenzo Librandi, Jul 21 2017
CROSSREFS
Sequence in context: A214768 A337855 A099044 * A019581 A183285 A359458
KEYWORD
nonn
AUTHOR
Emeric Deutsch, Jun 02 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 00:59 EDT 2024. Contains 371696 sequences. (Running on oeis4.)