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

 


A246911
Numbers n such that sigma(n+sigma(n)) = 4*sigma(n).
5
28, 66, 348, 496, 840, 920, 1320, 1416, 1602, 1770, 1896, 1920, 2040, 2280, 2556, 3000, 3360, 3720, 4440, 4920, 5456, 5640, 5826, 7080, 7392, 8010, 8040, 8128, 8298, 10528, 10680, 11424, 12768, 12840, 13080, 15108, 15504, 17880, 18120, 18720, 18840, 20832
OFFSET
1,1
EXAMPLE
Number 28 (with sigma(28) = 56) is in sequence because sigma(26+sigma(26)) = sigma(84) = 224 = 4*56.
MAPLE
with(numtheory): A246911:=n->`if`(sigma(n+sigma(n)) = 4*sigma(n), n, NULL): seq(A246911(n), n=1..3*10^4); # Wesley Ivan Hurt, Sep 07 2014
PROG
(Magma) [n:n in[1..10000] | SumOfDivisors(n+SumOfDivisors(n)) eq 4*SumOfDivisors(n)]
(PARI)
for(n=1, 10^4, if(sigma(n+sigma(n))==4*sigma(n), print1(n, ", "))) \\ Derek Orr, Sep 07 2014
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Sep 07 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 21 10:16 EDT 2024. Contains 376084 sequences. (Running on oeis4.)