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!)
A373071 Integers k such that k-1 is a multiple of Sum_{prime|k}(prime-1). 0
2, 3, 4, 5, 7, 8, 9, 11, 13, 16, 17, 19, 23, 25, 27, 29, 31, 32, 37, 41, 43, 47, 49, 53, 59, 61, 64, 65, 66, 67, 71, 73, 79, 81, 83, 89, 91, 97, 101, 103, 107, 109, 113, 120, 121, 125, 127, 128, 131, 137, 139, 149, 151, 154, 157, 163, 167, 169, 173, 179, 181, 191, 193, 197, 199 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Robert C. Vaughan and Kevin L. Weis, On sigma-phi numbers, Mathematika 48 (2001), 169-189.
MAPLE
f:= proc(n)
add( d-1, d= numtheory[factorset](n));
end proc:
results := []:
for n from 2 to 1000 do # Adjust the range as needed
if mod(n-1, f(n)) = 0 then
results := [op(results), n];
end if;
end do;
results;
MATHEMATICA
Select[Range[2, 200], Divisible[# - 1, Total[FactorInteger[#][[;; , 1]] - 1]] &] (* Amiram Eldar, May 26 2024 *)
PROG
(PARI) isok(k) = (k>1) && (((k-1) % vecsum(apply(x->(x-1), factor(k)[, 1]))) == 0); \\ Michel Marcus, May 26 2024
CROSSREFS
Cf. A055631.
A246655 is a subsequence.
Sequence in context: A326645 A371445 A325371 * A059046 A363727 A329366
KEYWORD
nonn
AUTHOR
Rafik Khalfi, May 25 2024
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 August 10 21:39 EDT 2024. Contains 375058 sequences. (Running on oeis4.)