OFFSET
1,1
COMMENTS
If n =3p and n+1 = 2q where p and q are primes then n is a member.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
9 is a member as psigma(9) = 1+3 +9 = psigma(10) = 1+2 +10 = 13.
MATHEMATICA
a[n_] := Module[{d = Rest[Divisors[n]]}, 1 + Total@DeleteDuplicatesBy[{#, Sort[FactorInteger[#][[;; , 2]]]} & /@ d, Last][[;; , 1]]]; s={}; a1=0; Do[a2 = a[n]; If[a1 == a2, Append|To[s, n-1]], {n, 1, 2500}]; s (* Amiram Eldar, Jul 20 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Jul 21 2003
EXTENSIONS
Corrected and extended by David Wasserman, Mar 07 2005
Offset corrected by Amiram Eldar, Jul 20 2019
STATUS
approved