login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A229883 Numbers k such that Sum_{j=1..k} sigma_*(j) == 0 (mod k), where sigma_*(j) is the sum of the anti-divisors of j (A066417). 0
1, 2, 5, 8, 11, 30, 34, 172, 311, 498, 562, 602, 630, 1742, 4608, 4842, 13664, 16386, 24659, 29150, 56357, 58185, 86267, 88114, 242156, 245325, 839756, 947942, 2524087, 2963552, 4218803, 18281326, 28292036, 30023108, 46376824, 52058844, 85990503, 139548984 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Tested up to k = 10^6.
LINKS
EXAMPLE
The sum of the anti-divisors of the numbers from 1 to 8 is 0 + 0 + 2 + 3 + 5 + 4 + 10 + 8 = 32 and 32/8 = 4.
MAPLE
with(numtheory); P:=proc(q) local a, b, j, k, n; b:=0;
for n from 1 to q do a:=0;
for k from 2 to n-1 do if abs((n mod k)-k/2)<1 then a:=a+k; fi; od;
b:=b+a; if b mod n=0 then print(n); fi; od; end: P(10^6);
CROSSREFS
Sequence in context: A285293 A246442 A056661 * A135050 A004112 A024815
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Oct 02 2013
EXTENSIONS
a(29)-a(38) from Donovan Johnson, Oct 12 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 09:22 EDT 2024. Contains 371905 sequences. (Running on oeis4.)