A365744 Number of perfect matchings on [2n] with n short pairs.
1, 1, 21, 610, 25585, 1410003, 96451278, 7886294988, 750477171015, 81489964671115, 9943628857101511, 1347093605732587986, 200625344191782743506, 32581061387048389884550, 5729971899859216832319300, 1084929313931423899784882280, 220046254343980047765630634905
Offset: 0
Keywords
Links
- Alois P. Heinz, Table of n, a(n) for n = 0..313
- Wikipedia, Involution (mathematics)
Programs
-
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);
Formula
a(n) = A079267(2n,n).
Comments