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!)
A274566 Numbers k such that sigma(k) == 0 (mod k-10). 12
11, 12, 14, 22, 40, 42, 46, 154, 190, 2656, 6490, 44650, 318250, 1360810, 1503370, 1788490, 3214090, 103712410, 3915380170, 6077111050, 9796360330, 10828121356, 33086522327050, 35966517350410 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
sigma(11) mod (11 - 10) = 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, -10);
MATHEMATICA
k=-10; Select[Range[Abs@k+1, 10^7], Mod[DivisorSigma[1, #], #+k] == 0 &] (* Vincenzo Librandi, Jul 06 2016 *)
PROG
(Magma) [n: n in [11..2*10^6] | SumOfDivisors(n) mod (n-10) eq 0 ]; // Vincenzo Librandi, Jul 06 2016
CROSSREFS
Sequence in context: A034907 A045987 A121978 * A349153 A213309 A128997
KEYWORD
nonn,more
AUTHOR
Paolo P. Lava, Jul 06 2016
EXTENSIONS
a(17)-a(22) from Giovanni Resta, Jul 06 2016
a(23)-a(24) from Jud McCranie, Dec 02 2019
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 25 10:41 EDT 2024. Contains 371967 sequences. (Running on oeis4.)