login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A123385
a(n) = (n!)^2/2.
3
2, 18, 288, 7200, 259200, 12700800, 812851200, 65840947200, 6584094720000, 796675461120000, 114721266401280000, 19387894021816320000, 3800027228275998720000, 855006126362099712000000
OFFSET
2,1
LINKS
FORMULA
a(n) = Sum[Product[k, {k, i, n}]*a(i), {i, 0, n - 1}].
MATHEMATICA
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}]
Table[(n!)^2/2, {n, 2, 50}] (* G. C. Greubel, Oct 13 2017 *)
PROG
(PARI) for(n=2, 25, print1((n!)^2/2, ", ")) \\ G. C. Greubel, Oct 13 2017
(Magma) [(Factorial(n))^2/2: n in [2..25]]; // G. C. Greubel, Oct 13 2017
CROSSREFS
Sequence in context: A127134 A131455 A084947 * A374086 A121564 A224384
KEYWORD
nonn
AUTHOR
Gary W. Adamson, Oct 13 2006
STATUS
approved