OFFSET
1,1
COMMENTS
If sigma(n) is prime (A023194) then tau(n) is prime too. (See Crux Mathematicorum link.)
But the reverse is false; the numbers which verify tau(n) prime and sigma(n) not prime are in the sequence A275938.
All odd primes belong to the sequence A275938, but there are also in this sequence composite numbers which are all prime powers, these prime powers are here.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
Peter A. Lindstrom and Andy Liu, Problem 465, Crux Mathematicorum, page 188, Vol.6 , Jun. 80.
EXAMPLE
tau(49) = 3 and sigma(49) = 57 = 3 * 19.
MAPLE
for n from 2 to 550000 do p(n):=tau(n);
if not isprime(n) and is prime(p(n)) and not isprime(sigma(n)) then print (n, p(n), sigma(n)) else fi; od:
# alternative
N:= 10^5: # to get all terms <= N
P:= select(isprime, [2, seq(i, i=3..isqrt(N), 2)]):
S:= {}:
for p in P do
k:= 1:
do
k:= nextprime(k+1)-1;
if p^k > N then break fi;
if not isprime((p^(k+1)-1)/(p-1)) then S:= S union {p^k} fi
od
od:
sort(convert(S, list)); # Robert Israel, Jun 05 2017
MATHEMATICA
Select[Range[10^5], Function[n, And[CompositeQ@ n, Map[PrimeQ@ DivisorSigma[#, n] &, {0, 1}] == {True, False}]]] (* Michael De Vlieger, May 24 2017 *)
PROG
(PARI) lista(nn) = {forcomposite(n=1, nn, if (isprime(numdiv(n)) && !isprime(sigma(n)), print1(n, ", ")); ); } \\ Michel Marcus, May 24 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Bernard Schott, May 22 2017
STATUS
approved