OFFSET
1,2
COMMENTS
Is it possible to find distinct x and y such that sigma(x)/x^2 = sigma(y)/y^2 ?
LINKS
Michel Marcus, Table of n, a(n) for n = 1..10000
Michael De Vlieger, Scatterplot of sigma(x)/x^2 for x=1..240, highlighting the position of superabundant x (in A004394) in red.
EXAMPLE
For 1,2,3,4,6,5,... sigma(x)/x^2 gives: 1 > 3/4 > 4/9 > 7/16 > 1/3 > 6/25 > ...
MATHEMATICA
Block[{nn = Function[s, FirstPosition[s, #][[1]] &@ Fold[Max, s]]@ Array[DivisorSigma[1, #]/# &, 125], s}, s = Array[DivisorSigma[1, #]/#^2 &, nn]; #[[1 ;; FirstPosition[#, nn][[1]]]] &@ Map[FirstPosition[s, #][[1]] &, ReverseSort[s]]] (* Michael De Vlieger, Oct 31 2021 *)
PROG
(PARI) lista(nn) = Vec(vecsort(vector(10*nn, k, -sigma(k)/k^2), , 1), nn);
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Marcus, Oct 31 2021
STATUS
approved