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!)
A055971 Numbers k such that k | (sigma(k) - d(k) - phi(k)) and k is not a prime or twice a prime. 1
1, 198, 294, 20280, 195320, 1782240, 3038720, 12190720 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(9) > 10^10, if it exist. - Amiram Eldar, Apr 29 2024
LINKS
MATHEMATICA
Do[ If[ And[ !PrimeQ[ n ], !PrimeQ[ n/2 ] ], If[ Mod[ DivisorSigma[ 1, n ]-DivisorSigma[ 0, n ]- EulerPhi[ n ], n ]==0, Print[ n ] ] ], {n, 1, 10^8} ]
PROG
(PARI) is1(k) = {my(f = factor(k)); !((sigma(f) - numdiv(f) - eulerphi(f)) % k); }
is(k) = !isprime(k) && !(!(k%2) && isprime(k/2)) && is1(k); \\ Amiram Eldar, Apr 29 2024
CROSSREFS
Cf. A000005 (d(n)), A000010 (phi), A000203 (sigma).
Sequence in context: A248534 A334403 A238230 * A075293 A083264 A202526
KEYWORD
nonn,more,changed
AUTHOR
Robert G. Wilson v, Jul 19 2000
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 1 17:43 EDT 2024. Contains 372175 sequences. (Running on oeis4.)