The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A123385 a(n) = (n!)^2/2. 3
2, 18, 288, 7200, 259200, 12700800, 812851200, 65840947200, 6584094720000, 796675461120000, 114721266401280000, 19387894021816320000, 3800027228275998720000, 855006126362099712000000 (list; graph; refs; listen; history; text; internal format)
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 * A121564 A224384 A092563
KEYWORD
nonn
AUTHOR
Gary W. Adamson, Oct 13 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 10 05:51 EDT 2024. Contains 373253 sequences. (Running on oeis4.)