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!)
A341060 Numbers k such that A340179(k) is a multiple of k. 2
1, 2, 10, 16, 30, 74, 81, 97, 489, 525, 607, 1861, 4439, 26051 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
a(4) = 16 is a term because A340179(16) = 32 = 2*16.
MAPLE
f:= proc(n) local C, s, c;
C:=select(t -> igcd(t, n) = 1, [$1..n-1]);
s:= convert(C, `+`);
add(s mod c, c = C)
end proc:
select(t -> f(t) mod t = 0, [$1..5000]);
MATHEMATICA
A340179[n_] := Total@Mod[#2, #1]& @@ {#, Total@#}& @ Select[Range[n], GCD[#, n] == 1&];
Reap[For[k = 1, k <= 80000, k++, If[Divisible[A340179[k], k], Print[k]; Sow[k]]]][[2, 1]] (* Jean-François Alcover, May 16 2023, after Michael De Vlieger in A340179 *)
CROSSREFS
Sequence in context: A054028 A063716 A125212 * A189329 A242089 A110761
KEYWORD
nonn,more
AUTHOR
J. M. Bergot and Robert Israel, Feb 04 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 April 24 08:13 EDT 2024. Contains 371922 sequences. (Running on oeis4.)