login
A060776
Smaller central (median) divisor of n!.
18
1, 1, 2, 4, 10, 24, 70, 192, 576, 1890, 6300, 21600, 78848, 294840, 1143072, 4572288, 18849600, 79968000, 348566400, 1559376000, 7147140000, 33522128640, 160758097500, 787652812800, 3938264064000, 20080974513600, 104348440350000, 552160113120000
OFFSET
1,3
COMMENTS
Factorial splitting: write n! = x*y with x <= y and x maximal; sequence gives value of x. Inequality "x < y" gives the same sequence, except that a(1) is not defined.
Between this d and its complementary divisor, the integer part of square root of n! is situated; for n=6: {24,26,30}. - Nathaniel Johnston, Jun 25 2011
LINKS
Max Alekseyev, Table of n, a(n) for n = 1..140 (first 59 terms from Oleg Terentyev)
FORMULA
a(n) = n!/A060777(n). - David Wasserman, Jun 15 2002
a(n) = A033676(A000142(n)). - Pontus von Brömssen, Jul 15 2023
EXAMPLE
Divisors of 6!=720 are {1,2,3,4,5,6,...,24,30,...,360,720}. a(6)=24, the 15th divisor from 30 divisors of 720.
MATHEMATICA
Table[ Part[ Divisors[ w! ], Floor[ DivisorSigma[ 0, n! ]/2 ] ], {w, a, b} ]
PROG
(PARI) a(n) = if (n==1, 1, my(d=divisors(n!)); d[#d\2]); \\ Michel Marcus, Sep 16 2018
KEYWORD
nonn
AUTHOR
Labos Elemer, Apr 26 2001
EXTENSIONS
More terms from David Wasserman, Jun 15 2002
a(27)-a(32) from M. F. Hasler, Sep 20 2011
STATUS
approved