Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #6 Sep 08 2022 08:45:28
%S 2,18,288,7200,259200,12700800,812851200,65840947200,6584094720000,
%T 796675461120000,114721266401280000,19387894021816320000,
%U 3800027228275998720000,855006126362099712000000
%N a(n) = (n!)^2/2.
%H G. C. Greubel, <a href="/A123385/b123385.txt">Table of n, a(n) for n = 2..250</a>
%F a(n) = Sum[Product[k, {k, i, n}]*a(i), {i, 0, n - 1}].
%t f[0] = 0; f[1] = 1; f[n_] := f[n] = Sum[Product[k, {k, i, n}]*f[i], {i, 0, n - 1}] Table[f[n], {n, 0, 30}]
%t Table[(n!)^2/2, {n, 2, 50}] (* _G. C. Greubel_, Oct 13 2017 *)
%o (PARI) for(n=2,25, print1((n!)^2/2, ", ")) \\ _G. C. Greubel_, Oct 13 2017
%o (Magma) [(Factorial(n))^2/2: n in [2..25]]; // _G. C. Greubel_, Oct 13 2017
%K nonn
%O 2,1
%A _Gary W. Adamson_, Oct 13 2006