This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A346378 #11 Jul 15 2021 02:47:45 %S A346378 2,1,14,59,143,239,1079,2519,1439,7559,17639,4319,14399,70559,55439, %T A346378 113399,120959,166319,205919,332639,760319,554399,907199,277199, %U A346378 720719,2162159,3245759,4324319,2494799,5266799,5765759,9172799,8315999,15724799,16853759,21067199 %N A346378 a(n) is the least k such that there are exactly n numbers i with A075254(i) = k. %C A346378 a(n) is the least solution k to A346377(k) = n. %e A346378 a(3) = 59 because there are 3 solutions to A075254(k) = 59, namely %e A346378 A075254(38) = 38+2+19 = 59 %e A346378 A075254(44) = 44+2+2+11 = 59 %e A346378 A075254(48) = 48+2+2+2+2+3 = 59 %e A346378 and no number < 59 has exactly 3 solutions. %p A346378 f:= proc(n) local t; add(t[1]*t[2],t=ifactors(n)[2])+n end proc: %p A346378 N:= 10^6: # for terms <= N %p A346378 V:= Vector(N): %p A346378 for n from 1 to N do %p A346378 v:= f(n); %p A346378 if v <= N then V[v]:= V[v]+1 fi %p A346378 od: %p A346378 m:= max(V): %p A346378 A:= Array(0..m): %p A346378 for i from 1 to N do %p A346378 if A[V[i]] = 0 then A[V[i]]:= i fi %p A346378 od: %p A346378 convert(A,list); %t A346378 f[1] = 1; f[n_] := n + Plus @@ Times @@@ FactorInteger[n]; m = 10^7; v = Table[0, {m}]; Do[i = f[n]; If[i <= m, v[[i]]++], {n, 1, m}]; TakeWhile[Table[ FirstPosition[v, k][[1]], {k, 0, Max[v]}], NumericQ] (* _Amiram Eldar_, Jul 14 2021 *) %Y A346378 Cf. A075254, A346377 %K A346378 nonn %O A346378 0,1 %A A346378 _J. M. Bergot_ and _Robert Israel_, Jul 14 2021