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!)
A132630 Numbers n such that sigma(n)-n divides sigma(n+1)-n-1, where sigma(n) is sum of positive divisors of n. 2
2, 3, 5, 7, 9, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 85, 89, 97, 101, 103, 107, 109, 113, 125, 127, 131, 137, 139, 149, 151, 157, 163, 167, 169, 173, 179, 181, 191, 193, 197, 199 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
With the exception of the first term, only odd numbers. All the prime numbers p are included because sigma(p)-p=1.
LINKS
EXAMPLE
n=85 -> sigma(n+1)-n-1=1+2+43=46 sigma(n)-n=1+5+17=23 -> 46/23=2
n=125 -> sigma(n+1)-n-1=1+2+3+6+7+9+14+18+21+42+63=186 sigma(n)-n=1+5+25=31 -> 186/31=6
MAPLE
with(numtheory); P:=proc(n) local a, i; for i from 1 by 1 to n do if sigma(i)-i>0 then a:=(sigma(i+1)-i-1)/(sigma(i)-i); if a>0 and trunc(a)=a then print(i); fi; fi; od; end: P(200)
MATHEMATICA
Select[Range[2, 200], Divisible[DivisorSigma[1, #+1]-#-1, DivisorSigma[ 1, #]-#]&] (* Harvey P. Dale, Apr 25 2015 *)
PROG
(Magma) [k:k in [2..200]| IsIntegral((DivisorSigma(1, k+1)-k-1)/ (DivisorSigma(1, k)-k))]; // Marius A. Burtea, Nov 06 2019
CROSSREFS
Sequence in context: A353393 A316857 A318589 * A033946 A328232 A189710
KEYWORD
easy,nonn
AUTHOR
EXTENSIONS
Comment amended by Harvey P. Dale, Apr 25 2015
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 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)