OFFSET
1,2
COMMENTS
Searching until n = 2500, we have found only 11 values of n with more than one solution to usigma(x) = prime(n)#: 8, 11, 13, 17, 24, 38, 86 have 2 solutions and 3, 5, 6, 7 have 3 solutions. Are these the only numbers with more than one solution?
EXAMPLE
For n = 6 there are 3 solutions: usigma(20018) = usigma(29504) = usigma(30029) = 30030 = A002110(6).
MATHEMATICA
primorial[n_] := Product[Prime[i], {i, n}]; a[k_] := Module[{n = primorial[k], m = 1}, s = {};
If[PrimePowerQ[n - 1], AppendTo[s, n - 1]];
While[2^m<n, If[Divisible[n, 2^m + 1], r = n/(2^m + 1) - 1;
If[PrimePowerQ[r], AppendTo[s, 2^m*r]]]; m++]; Length[s]];
seq=Map[a, Range[1000]]; Flatten[Position[seq, _?(#>0 &)]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar and Altug Alkan, Aug 24 2017
STATUS
approved