OFFSET
1,2
COMMENTS
More formally, a(n) is the minimum element of the set of positive integers k such that the k-th tetrahedral number is not smaller than the n-th factorial.
Open problem: what is the cardinality of the set of numbers that are simultaneously a tetrahedral number and a factorial number? For example, 1 and 120 belong to this set.
FORMULA
a(n) = ceiling((sqrt(3) * sqrt(243*(n!)^2 - 1) + 27*n!)^(1/3) / 3^(2/3) + 1/(3^(1/3) * (sqrt(3) * sqrt(243*(n!)^2 - 1) + 27*n!)^(1/3)) - 1). - Daniel Suteu, Jun 30 2019
a(n) = floor((6*n!)^(1/3)). - Giovanni Resta, Jul 30 2019
EXAMPLE
The minimum tetrahedral number not smaller than 4! is 35 (i.e., the 5th tetrahedral number), so a(4) = 5.
The minimum tetrahedral number not smaller (equal, in fact) than 5! is 120 (i.e., the 8th tetrahedral number), so a(5) = 8.
MATHEMATICA
Floor[(6 Range[33]!)^(1/3)] (* Giovanni Resta, Jul 30 2019 *)
PROG
(PARI) a(n) = {my(k=1); while (k*(k+1)*(k+2)/6 < n!, k++); k; } \\ Michel Marcus, Jun 28 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Lorenzo Sauras Altuzarra, Jun 28 2019
EXTENSIONS
a(26)-a(33) from Daniel Suteu, Jun 30 2019
STATUS
approved