A123523 Smallest odd number k such that sigma(x) = k has exactly n solutions.
1, 31, 347529, 10773399, 4104665019, 77253471477, 28732655133, 35492068813383, 108695634368139, 461396894573979, 68452476460273269, 2529134502772059, 99414440839732473
Offset: 1
Examples
For n = 3, sigma(x) = 347529 has exactly three solutions x = 164836, 203522, 239121.
Links
- Max Alekseyev, Computing the Inverses, their Power Sums, and Extrema for Euler's Totient and Other Multiplicative Functions, Journal of Integer Sequences 19 (2016), Article 16.5.2
- David A. Corneth, PARI program, partially written by Max Alekseyev
Programs
-
Mathematica
Needs["Statistics`DataManipulation`"]; nn=10^6; t1=DivisorSigma[1,Range[nn]^2]; t2=DivisorSigma[1,2*Range[nn/Sqrt[2]]^2]; t=Join[t1,t2]; {u,v}=Transpose[Sort[Frequencies[t]]]; Table[p=Position[u,i,1,1][[1,1]]; v[[p]], {i,Length[Union[u]]}]
Extensions
a(8) from Martin Fuller, Oct 07 2006
a(9)-a(10) from Donovan Johnson, Dec 09 2008
a(11)-a(13) from Donovan Johnson, Jun 09 2011
Comments