OFFSET
0,2
COMMENTS
It is not known if the ratios A061300(n+1)/A061300(n) are always integer, but so far (for the listed terms) they are. - Max Alekseyev, Sep 05 2023
LINKS
Max Alekseyev, Table of n, a(n) for n = 0..29
MATHEMATICA
A061300[n_Integer?NonNegative] := A061300[n] = Module[{fact = n!, num = 1}, Monitor[While[Length@Divisors@num != fact, num++]; num, {n, num}]]; a[n_] := A061300[n + 1]/A061300[n]; Table[a[n], {n, 0, 4}] (* Robert P. P. McKone, Sep 07 2023 *)
CROSSREFS
Cf. A061300.
KEYWORD
nonn,hard
AUTHOR
J. Lowell, Oct 04 2022
EXTENSIONS
a(11)-a(21) from David A. Corneth, Oct 05 2022
a(22)-a(29) from Max Alekseyev, Sep 05 2023
STATUS
approved