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!)
A033832 Sum of odd divisors of n < sqrt(n) = sum of even divisors of n < sqrt(n). 2
1, 40, 100, 208, 928, 1044, 3904, 10692, 17444, 29524, 36652, 45980, 87604, 91044, 136808, 158652, 161564, 171028, 187068, 218652, 230044, 260608, 287868, 406812, 438124, 450492, 583110, 665684, 719550, 731850, 736648, 865444, 1045504 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
All terms except first one appear to be even. - Michel Marcus, Jul 15 2013
LINKS
kaleidoscopic numbers [broken link]
MATHEMATICA
aQ[n_] := DivisorSum[n, # * (-1)^# &, # < Sqrt[n] & ] == 0; Select[Range[10^4], aQ] (* Amiram Eldar, Sep 23 2019 *)
PROG
(PARI) isok(n) = {so = 0; se = 0; fordiv (n, d, if (d < sqrt(n), if (d % 2, so += d, se += d))); return (so == se); } \\ Michel Marcus, Jul 14 2013
CROSSREFS
Sequence in context: A092889 A235280 A235271 * A235017 A043219 A039396
KEYWORD
easy,nonn
AUTHOR
EXTENSIONS
Prepended a(1)=1, Michel Marcus, Jul 15 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 May 2 19:04 EDT 2024. Contains 372203 sequences. (Running on oeis4.)