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!)
A275938 Numbers n such that d(n) is prime while sigma(n) is not prime (where d(n) = A000005(n) and sigma(n) = A000203(n)). 2
3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 49, 53, 59, 61, 67, 71, 73, 79, 81, 83, 89, 97, 101, 103, 107, 109, 113, 121, 127, 131, 137, 139, 149, 151, 157, 163, 167, 169, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
From Robert Israel, Aug 12 2016: (Start)
d(n) is prime iff n = p^k where p is prime and k+1 is prime.
For such n, sigma(n) = 1+p+...+p^k = (pn-1)/(p-1).
The sequence contains 2^(q-1) for q in A054723,
3^(q-1) for q prime but not in A028491,
5^(q-1) for q prime but not in A004061,
7^(q-1) for q prime but not in A004063, etc.
In particular, it contains all odd primes. (End)
LINKS
EXAMPLE
49 is a term because A000005(49) = 3 is prime while sigma(49) = 57 is not.
MAPLE
N:= 1000: # to get all terms <= N
P:= select(isprime, {2, seq(p, p=3..N, 2)}):
fp:= proc(p) local q, res;
q:= 2;
res:= NULL;
while p^(q-1) <= N do
if not isprime((p^q-1)/(p-1)) then res:= res, p^(q-1) fi;
q:= nextprime(q);
od;
res;
end proc:
sort(convert(map(fp, P), list)); # Robert Israel, Aug 12 2016
PROG
(PARI) lista(nn) = for(n=1, nn, if(isprime(numdiv(n)) && !isprime(sigma(n)), print1(n, ", ")));
CROSSREFS
Sequence in context: A338483 A318871 A330225 * A093893 A056912 A075763
KEYWORD
nonn,easy
AUTHOR
Altug Alkan, Aug 12 2016
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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)