A180064 a(n) = n!/A056040(n).
1, 1, 1, 1, 4, 4, 36, 36, 576, 576, 14400, 14400, 518400, 518400, 25401600, 25401600, 1625702400, 1625702400, 131681894400, 131681894400, 13168189440000, 13168189440000, 1593350922240000, 1593350922240000, 229442532802560000, 229442532802560000
Offset: 0
Programs
-
Maple
A180064 := n -> iquo(n,2)!^2; # Peter Luschny, Aug 23 2010
-
Mathematica
f[n_] := 2^(n - Mod[n, 2])*Product[k^((-1)^(k+1)), {k,n}]; Array[ #!/f@# &, 25, 0]
Formula
a(n) = floor(n/2)!^2. - Peter Luschny, Aug 23 2010
Comments