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”).

A126328
Rounded value of n!/(n(n+1)/2); A000142(n)/A000217(n).
1
1, 1, 1, 2, 8, 34, 180, 1120, 8064, 65978, 604800, 6141046, 68428800, 830269440, 10897286400, 153844043294, 2324754432000, 37440781904842, 640237370572800, 11585247657984000, 221172909834240000, 4442690623626907826
OFFSET
1,4
COMMENTS
This is the value that comes up when (all positive integers n and below multiplied together) is divided by (all positive integers n and below added together). Some terms need to be rounded, but for some terms, n! is divisible by n(n+1)/2. See A060462 for these numbers.
EXAMPLE
a(6) = 34 because 6! = 720 and 6(6+1)/2 = 21. 720/21 = 34.2857... rounded to 34.
MATHEMATICA
Table[Round[n!/(n(n+1)/2)], {n, 22}] (* James C. McMahon, Dec 25 2024 *)
CROSSREFS
Cf. A061370. [From R. J. Mathar, Dec 13 2008]
Sequence in context: A030960 A121894 A061370 * A268558 A191569 A229812
KEYWORD
nonn
AUTHOR
Jonathan R. Love (japanada11(AT)yahoo.ca), Mar 09 2007
STATUS
approved