OFFSET
1,1
COMMENTS
First fractions n!/sigma(n) in their reduced form are: 2/3, 3/2, 24/7, 362880/13, 20922789888000/31, 15511210043330985984000000/31...
Conjecture: all terms are prime (verified for n <= 10^5).
Conjecture: for n >= 4 if sigma(n) does not divide n!, then n is a square. (verified for n <= 10^5).
See also comment in A390836 (numerators).
Is this the same as A062700 from the 3rd term on? - R. J. Mathar, Mar 06 2026
EXAMPLE
For n = 9, 9!/sigma(9) = 362880/13 and 13 does not divide 362880, so 13 is a term.
For n = 12, 12!/sigma(12) = 479001600/28 and 28 divides 479001600, so 28 is not a term.
PROG
(PARI) isok(n) = ((n! % sigma(n)) != 0); \\ A325436.
for(n=1, 1000, if(isok(n), print1(denominator(n!/sigma(n))", ")))
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
Claude H. R. Dequatre, Feb 17 2026
STATUS
approved
