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!)
A246912 Numbers n such that sigma(n+sigma(n)) = 5*sigma(n). 6
15456, 16920, 48576, 59520, 107160, 153360, 232596, 281916, 306720, 332280, 332640, 358560, 360360, 373104, 383400, 514080, 548772, 556920, 788256, 876960, 884520, 930384, 943344, 950040, 955296, 1234464, 1357020, 1396440, 1421280, 1534080, 1539720, 1582866 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
Number 15456 (with sigma(15456) = 48384) is in sequence because sigma(15456+sigma(15456)) = sigma(63840) = 241920 = 5*48384.
MAPLE
with(numtheory): A246912:=n->`if`(sigma(n+sigma(n)) = 5*sigma(n), n, NULL): seq(A246912(n), n=1..10^6); # Wesley Ivan Hurt, Sep 07 2014
MATHEMATICA
Select[Range[16*10^5], DivisorSigma[1, #+DivisorSigma[1, #]] == 5*DivisorSigma[ 1, #]&] (* Harvey P. Dale, Mar 13 2016 *)
PROG
(Magma) [n:n in[1..10^7] | SumOfDivisors(n+SumOfDivisors(n))eq 5*SumOfDivisors(n)]
(PARI)
for(n=1, 10^7, if(sigma(n+sigma(n))==5*sigma(n), print1(n, ", "))) \\ Derek Orr, Sep 07 2014
CROSSREFS
Sequence in context: A054840 A210058 A154091 * A035920 A342310 A201344
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Sep 07 2014
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 9 23:14 EDT 2024. Contains 372354 sequences. (Running on oeis4.)