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!)
A246910 Numbers n such that sigma(n+sigma(n)) = 3*sigma(n). 6
1, 7, 26, 30, 42, 54, 69, 78, 84, 94, 102, 103, 114, 138, 140, 174, 222, 258, 354, 364, 474, 476, 498, 520, 532, 534, 582, 618, 644, 650, 762, 764, 812, 834, 847, 894, 978, 1002, 1036, 1038, 1050, 1182, 1185, 1194, 1204, 1214, 1362, 1372, 1398, 1434, 1487 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A246914 gives the primes in this sequence.
LINKS
Martin Møller Skarbiniks Pedersen, Table of n, a(n) for n = 1..1000
EXAMPLE
Number 26 (with sigma(26) = 42) is in sequence because sigma(26+sigma(26)) = sigma(68) = 126 = 3*42.
MAPLE
with(numtheory): A246910:=n->`if`(sigma(n+sigma(n)) = 3*sigma(n), n, NULL): seq(A246910(n), n=1..5000); # Wesley Ivan Hurt, Sep 07 2014
PROG
(Magma) [n:n in[1..10000] | SumOfDivisors(n+SumOfDivisors(n)) eq 3*SumOfDivisors(n)]
(PARI)
for(n=1, 10^4, if(sigma(n+sigma(n))==3*sigma(n), print1(n, ", "))) \\ Derek Orr, Sep 07 2014
CROSSREFS
Sequence in context: A262109 A276614 A230399 * A098127 A283427 A131905
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 April 25 06:14 EDT 2024. Contains 371964 sequences. (Running on oeis4.)