OFFSET
1,1
COMMENTS
The next term is too large to be displayed.
First fractions n!/sigma(n) in their reduced form are: 2/3, 3/2, 24/7, 362880/13, 20922789888000/31, 15511210043330985984000000/31...
All terms are even, the third is 24 and all the next ones are multiples of 24. (verified for n <= 10^5).
See also comment in A390815.
EXAMPLE
For n = 4, 4!/sigma(4) = 24/7 and 7 does not divide 24, so 24 is a term.
For n = 5, 5!/sigma(5) = 120/6 and 6 divides 120, so 120 is not a term.
PROG
(PARI) isok(n) = ((n! % sigma(n)) != 0); \\ A325436.
for(n=1, 1000, if(isok(n), print1(numerator(n!/sigma(n))", ")))
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
Claude H. R. Dequatre, Feb 17 2026
STATUS
approved
