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!)
A337189 Numbers k such that k divides A340180(k). 1
1, 2, 3, 7, 61, 75, 104, 2097, 3304, 7320, 42104, 280586 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
a(4) = 61 is a term because A340180(61) = 671 = 11*61.
MAPLE
f := proc(n)
local t, s, k;
s := numtheory:-sigma(n);
t := 0;
for k to n - 1 do if igcd(n, k) = 1 then t := t + (s mod k) end if
end do;
t
end proc:
select(t -> f(t) mod t = 0, [$1..10000]);
MATHEMATICA
f[n_] := Mod[DivisorSigma[1, n], Select[Range[n-1], CoprimeQ[#, n]&]] // Total;
Select[Range[300000], If[Divisible[f[#], #], Print[#]; True, False]&] (* Jean-François Alcover, Jan 31 2021 *)
CROSSREFS
Cf. A340180.
Sequence in context: A156585 A354744 A299923 * A087358 A255357 A270002
KEYWORD
nonn,more
AUTHOR
J. M. Bergot and Robert Israel, Jan 29 2021
EXTENSIONS
a(12) from Jean-François Alcover, Feb 01 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 25 12:53 EDT 2024. Contains 371969 sequences. (Running on oeis4.)