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
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
CROSSREFS
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