OFFSET
1,1
COMMENTS
Subsequence of A002808.
Motivation was the investigation of sum of divisors of n! in terms of sum of divisors of n.
Obviously, a(n) cannot be a prime number, although it can be a semiprime number.
Is this sequence infinite?
EXAMPLE
a(1) = 4 because sigma(4!) mod sigma(4) = 60 mod 7 = 4.
a(2) = 6 because sigma(6!) mod sigma(6) = 2418 mod 12 = 6.
a(3) = 9 because sigma(9!) mod sigma(9) = 1481040 mod 13 = 2.
PROG
(PARI) for(n=1, 1e30, if( sigma(n!) % sigma(n) != 0 , print1(n", ")))
CROSSREFS
KEYWORD
nonn
AUTHOR
Altug Alkan, Oct 03 2015
STATUS
approved