OFFSET
0,3
COMMENTS
Also number of fixed point free involutions on [4n] having n cycles with adjacent integers. a(2) = 21: (12)(34)(57)(68), (12)(35)(46)(78), (12)(35)(48)(67), (12)(37)(45)(68), (12)(37)(48)(56), (12)(38)(47)(56), (13)(24)(56)(78), (13)(26)(45)(78), (13)(28)(45)(67), (14)(23)(58)(67), (15)(23)(46)(78), (15)(23)(48)(67), (15)(26)(34)(78), (15)(28)(34)(67), (16)(25)(34)(78), (17)(23)(45)(68), (17)(23)(48)(56), (17)(28)(34)(56), (18)(23)(47)(56), (18)(25)(34)(67), (18)(27)(34)(56).
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..313
Wikipedia, Involution (mathematics)
FORMULA
a(n) = A079267(2n,n).
MAPLE
a:= proc(n) option remember; `if`(n<2, 1, (8*(9*n-1)*(2*n-3)*a(n-2)+
(n-1)*(243*n^3-513*n^2+360*n-76)*a(n-1))/(2*(9*n-10)*n*(n-1)))
end:
seq(a(n), n=0..16);
CROSSREFS
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Sep 19 2023
STATUS
approved