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!)
A274551 Numbers k such that sigma(k) == 0 (mod k+3). 14
4, 8925, 32445, 442365 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(5) > 10^8 if it exists. - Felix Fröhlich, Jul 01 2016
No more terms < 6.5*10^14. - Jud McCranie, Dec 02 2019
LINKS
EXAMPLE
sigma(4) mod (4+3) = 7 mod 7 = 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, 3);
MATHEMATICA
Select[Range[10^6], Mod[DivisorSigma[1, #], # + 3] == 0 &] (* Michael De Vlieger, Jul 01 2016 *)
PROG
(PARI) is(n) = Mod(sigma(n), n+3)==0 \\ Felix Fröhlich, Jul 01 2016
(Magma) [n: n in [1..2*10^6] | SumOfDivisors(n) mod (n+3) eq 0 ]; // Vincenzo Librandi, Jul 02 2016
CROSSREFS
Sequence in context: A115050 A072724 A116271 * A257281 A201392 A058417
KEYWORD
nonn,more
AUTHOR
Paolo P. Lava, Jun 28 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 April 23 06:58 EDT 2024. Contains 371906 sequences. (Running on oeis4.)