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!)
A274554 Numbers n such that sigma(n) == 0 (mod n-4). 3
5, 6, 10, 22, 24, 60, 130, 184, 1012, 2272, 18904, 33664, 70564, 85936, 100804, 391612, 527872, 1090912, 17619844, 2147713024, 6800695312, 34360655872, 549759483904, 1661355408388 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A125247 is a subset of this sequence.
LINKS
EXAMPLE
sigma(5) mod 5-4 = 6 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, -4);
MATHEMATICA
k = -4; Select[Range[Abs@ k + 1, 10^7], Mod[DivisorSigma[1, #], # + k] == 0 &] (* Michael De Vlieger, Jul 01 2016 *)
PROG
(Magma) [n: n in [5..2*10^6] | SumOfDivisors(n) mod (n-4) eq 0 ]; // Vincenzo Librandi, Jul 02 2016
CROSSREFS
Sequence in context: A254227 A326806 A056050 * A035111 A035282 A075156
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Jun 28 2016
EXTENSIONS
a(19)-a(24) from Giovanni Resta
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)