OFFSET
1,1
COMMENTS
Terms m of A076496 that are either not divisible by 6 (cf. A084306) or such that m/6 is not coprime to 6 (cf. A216697).
10384593717069654320312270165377024 is also a term. - Donovan Johnson, Dec 23 2013
a(12) > 10^24. - Max Alekseyev, Jan 20 2026
LINKS
Max A. Alekseyev, Computing bounded solutions to linear Diophantine equations with the sum of divisors, arXiv:2601.17832 [math.NT], 2026. See p. 9.
Aria Anavi, Paul Pollack, and Carl Pomerance, On congruences of the form sigma(n) == a (mod n), Int. J. Number Theory 09 (2013), 115-124.
Paul Pollack, The sum of divisors of n, modulo n, CNTA 2012.
EXAMPLE
sigma(24) % 24 = 12, and 24/6 is not coprime to 6, hence 24 is here.
sigma(121) % 121 = 12, and 121 is not divisible by 6, hence 121 is here.
PROG
(PARI) a(n) = m = 6; a = sigma(m) ; ((sigma(n) % n) == a) && ((n % m) || (!(n % m) && (gcd(m, (n/m)) != 1)));
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Michel Marcus, Dec 21 2013
EXTENSIONS
a(11) from Donovan Johnson, Dec 23 2013
STATUS
approved
