The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A341045 Numbers k such that k divides A318996(k). 1
1, 4, 6, 28, 45, 120, 496, 672, 6048, 8128, 14421, 30240, 32760, 523776, 2178540, 23569920, 26409026, 29270772, 30685402, 33550336, 45532800 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
a(2) = 4 is a term because A318996(4) = 4 is divisible by 4.
a(3) = 6 is a term because A318996(6) = 0 is divisible by 6.
MAPLE
f:= proc(n) local s, D, t;
D:= numtheory:-divisors(n);
s:= convert(D, `+`);
add(s mod t, t=D)
end proc:
select(t -> f(t) mod t = 0, [$1..20000]);
PROG
(PARI) f(n) = my(sn = sigma(n)); sumdiv(n, d, sn % d); \\ A318996
isok(k) = !(f(k) % k); \\ Michel Marcus, Feb 03 2021
CROSSREFS
Contains A007691.
Cf. A318996.
Sequence in context: A106286 A066293 A204385 * A050881 A229719 A122113
KEYWORD
nonn,more
AUTHOR
J. M. Bergot and Robert Israel, Feb 03 2021
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 May 16 17:27 EDT 2024. Contains 372554 sequences. (Running on oeis4.)