login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
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 December 4 14:48 EST 2023. Contains 367563 sequences. (Running on oeis4.)