A258968 a(n) is the least positive integer x with A054973(x) = n and A258913(x) < x.
2, 3, 124, 10714158
Offset: 0
Examples
For n=2, sigma(x)=124 for x=48 and 75, and 48+75 = 123 < 124. For n=3, sigma(x)=10714158 for x=3031200, 3417300, and 3987450; and their sum is 10435950 (<10714158).
Programs
-
PARI
a(n)=x=0;while(x++,u=List();for(i=1,x,if(sigma(i)==x,listput(u,i)));if(#u==n&vecsum(Vec(u))
Comments