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!)
A132631 Numbers k such that sigma(k+1)-k-1 divides sigma(k)-k, where sigma(k) is sum of positive divisors of n. 2
2, 4, 6, 10, 12, 16, 18, 20, 22, 24, 28, 30, 36, 40, 42, 46, 52, 58, 60, 66, 70, 72, 78, 82, 88, 94, 96, 100, 102, 106, 108, 112, 120, 126, 130, 136, 138, 148, 150, 156, 162, 166, 172, 178, 180, 190, 192, 196, 198 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Only even numbers.
LINKS
EXAMPLE
k=94 -> sigma(k)-k=1+2+47=50 sigma(k+1)-k-1=1+5+19=25 -> 50/25=2
k=120 -> sigma(k)-k=1+2+3+4+5+6+8+10+12+15+20+24+30+40+60=240 sigma(k+1)-k-1=1+11=12 -> 240/12=20
MAPLE
with(numtheory): P:=proc(k) if frac((sigma(k)-k)/(sigma(k+1)-k-1))=0 then k; fi; end: seq(P(n), n=2..200);
MATHEMATICA
Select[Range[2, 200], Divisible[DivisorSigma[1, #]-#, DivisorSigma[1, #+1]-#-1]&] (* Harvey P. Dale, May 20 2017 *)
CROSSREFS
Sequence in context: A015921 A232964 A348442 * A248614 A105965 A229489
KEYWORD
easy,nonn
AUTHOR
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 September 2 08:40 EDT 2024. Contains 375613 sequences. (Running on oeis4.)