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”).

A069520
Numbers k such that (1/k) * Sum_{d|k} d*sigma(d) is an integer.
3
1, 39, 793, 1638, 2379, 2394, 7137, 8190, 11970, 14274, 18135, 19530, 30927, 31122, 35685, 36270, 50700, 61854, 71370, 76921, 81900, 92781, 99918, 119700, 154635, 155610, 185562, 195300, 230763, 253890, 269500, 299754, 304038, 309270
OFFSET
1,2
COMMENTS
Sequence A232354 starts in a very similar way, and the two sequences have a common subsequence A232067 = (1, 39, 793, 2379, 7137, 76921, 230763, ...), but neither is a subsequence of the other. - M. F. Hasler, Nov 24 2013
LINKS
MATHEMATICA
s[n_] := DivisorSum[n, # * DivisorSigma[1, #] &]; Select[Range[300000], Divisible[s[#], #] &] (* Amiram Eldar, May 14 2022 *)
PROG
(PARI) is_A069520(n)=!(sumdiv(n, d, d*sigma(d))%n) \\ - M. F. Hasler, Nov 24 2013
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Apr 16 2002
STATUS
approved