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!)
A248023 Even numbers which are neither primes nor perfect powers and are coprime to the sum of their divisors. 1
50, 98, 242, 338, 392, 578, 722, 800, 968, 1058, 1250, 1352, 1682, 1922, 2312, 2450, 2738, 2888, 3362, 3698, 3872, 4232, 4418, 4802, 5408, 5618, 6050, 6272, 6728, 6962, 7442, 7688, 8450, 8978, 9248, 10082, 10658, 10952, 11552, 12482, 12800, 13448, 13778, 14450 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
50 is in the sequence since it is neither a prime nor a powerful number and its divisors 1, 2, 5, 10, 25, and 50 sum to 93, which is coprime to 50.
MATHEMATICA
perfectPowerQ[n_] := n == 1 || GCD @@ FactorInteger[n][[All, 2]] > 1; Select[ 2 Range@ 7500, !PrimeQ[ #] && GCD[#, DivisorSigma[1, #]] == 1 && !perfectPowerQ[ #] &]
PROG
(PARI) lista(nn) = {forstep(n=4, nn, 2, if (!ispower(n) && (gcd(n, sigma(n))==1), print1(n, ", ")); ); } \\ Michel Marcus, Oct 02 2014
CROSSREFS
Sequence in context: A260901 A090997 A141757 * A328253 A044139 A044520
KEYWORD
nonn,easy
AUTHOR
Robert G. Wilson v, Sep 29 2014
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)