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!)
A274557 Numbers k such that sigma(k) == 0 (mod k+6). 2
6, 24, 25, 30, 42, 54, 66, 78, 102, 114, 138, 174, 186, 222, 246, 258, 282, 304, 318, 354, 366, 402, 426, 438, 474, 498, 534, 582, 606, 618, 642, 654, 678, 762, 786, 822, 834, 894, 906, 942, 978, 1002, 1038, 1074, 1086, 1146, 1158, 1182, 1194, 1266, 1338, 1362 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
sigma(6) mod (6+6) = 12 mod 12 = 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, 6);
MATHEMATICA
Select[Range@ 1400, Mod[DivisorSigma[1, #], # + 6] == 0 &] (* Michael De Vlieger, Jul 05 2016 *)
PROG
(PARI) is(n)=sigma(n)%(n+6)==0 \\ Charles R Greathouse IV, Jul 16 2016
CROSSREFS
Sequence in context: A203984 A237836 A231324 * A072710 A349688 A273124
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Jul 05 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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)