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

A272716
Numbers equal to the sum of their proper divisors d such that d mod 3 = 1.
2
440, 28109312, 79228362752
OFFSET
1,1
COMMENTS
10^11 < a(4) <= 8581256320000.
The numbers equal to the sum of their proper divisors which are a multiple of 3 are the perfect numbers (A000396) multiplied by 3.
EXAMPLE
The proper divisors of 440 which are congruent to 1 mod 3 are 1, 4, 10, 22, 40, 55, 88, and 220. Since their sum is 440, 440 is a term.
MATHEMATICA
Select[Range[5000], # == Plus @@ Select[Most@ Divisors@#, Mod[#, 3] == 1 &] &]
PROG
(PARI) is(n)=sumdiv(n, d, if(d%3==1, d, 0))==if(n%3==1, 2*n, n) \\ Charles R Greathouse IV, May 09 2016
CROSSREFS
Sequence in context: A234202 A061626 A187239 * A124170 A252193 A207650
KEYWORD
nonn,bref,more,hard
AUTHOR
Giovanni Resta, May 05 2016
STATUS
approved