login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A224488
Numbers m such that k*m = Sum_{j|m, j < m} sigma(j), where k >= 1 is an integer.
2
4, 10, 42, 90, 2448, 4680, 27144, 117000, 154498509, 222970077, 11049088050, 63554826816
OFFSET
1,1
COMMENTS
a(13) > 10^11.
EXAMPLE
The divisors of 10 smaller than 10 are 1, 2 and 5. Since sigma(1) + sigma(2) + sigma(5) = 10, 10 is in the sequence.
MATHEMATICA
Select[Range[2, 120000], Mod[Total@DivisorSigma[1, Most@Divisors@#], #] == 0 &]
PROG
(PARI) isok(m) = sumdiv(m, d, if (d!=m, sigma(d))) % m == 0; \\ Michel Marcus, Jul 13 2021
CROSSREFS
Sequence in context: A220817 A346889 A114918 * A149213 A149214 A149215
KEYWORD
nonn,more
AUTHOR
Giovanni Resta, Apr 08 2013
EXTENSIONS
a(9)-a(12) and bound on a(13) from Donovan Johnson.
STATUS
approved