The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A274556 Numbers k such that sigma(k) == 0 (mod k-5). 3
6, 7, 8, 11, 12, 18, 21, 26, 68, 656, 2336, 8768, 133376, 528896, 34360918016 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A101223 is a subset of this sequence.
LINKS
EXAMPLE
sigma(6) (mod 6-5) = 12 mod 1 = 0.
MAPLE
with(numtheory); P:=proc(q, h) local n; for n from 1 to q do
if n+h>0 then if type(sigma(n)/(n+h), integer) then print(n); fi; fi; od; end: P(10^9, -5);
MATHEMATICA
n = -5; Select[Range[Abs@ n + 1, 10^6], Mod[DivisorSigma[1, #], # + n] == 0 &] (* Michael De Vlieger, Jul 01 2016 *)
PROG
(Magma) [n: n in [6..2*10^6] | SumOfDivisors(n) mod (n-5) eq 0]; // Vincenzo Librandi, Jul 02 2016
CROSSREFS
Sequence in context: A261752 A248902 A295668 * A066235 A037365 A083340
KEYWORD
nonn,more
AUTHOR
Paolo P. Lava, Jun 30 2016
EXTENSIONS
a(15) from Giovanni Resta, Jul 01 2016
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 15 20:14 EDT 2024. Contains 372549 sequences. (Running on oeis4.)