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 A072808 #48 Dec 01 2024 10:06:06 %S A072808 4,5,8,24,0,22,16,21,450,40,25,48,50,136,32,110,100,90,144,88,0,656, %T A072808 121,102,0,80,169,96,0,68,64,55,676,464,289,65,0,117,162,91,0,116,225, %U A072808 85,0,272,529,95,0,148,288,133,0,164,0,115,0,160,841,147,0,333,128,247 %N A072808 Smallest m such that sigma(m) mod phi(m) = n or 0 if no solution exists. %C A072808 Warning: It is only conjectured that there are no solutions for n such that a(n) = 0. The search for solutions tested all m <= 10^10 for these n. %C A072808 For odd remainders a(n) is a square or twice a square. See A028982, except terms 1 and 2. %C A072808 All zeros corresponding to odd terms a(n) with n < 64 confirmed up to m <= 10^24. - _Giovanni Resta_, Apr 02 2020 %F A072808 a(n) = Min{x; Mod(A000203(x), A000010(x))=n} or 0 if no solutions. %e A072808 For n=4: a(4)=24 since sigma(24)=60, phi(24)=8 and Mod(60, 8)=4. %p A072808 V:= Vector(100): %p A072808 for m from 2 to 10^7 do %p A072808 v:= numtheory:-sigma(m) mod numtheory:-phi(m); %p A072808 if v > 0 and v <= 100 and V[v] = 0 then V[v]:= m fi %p A072808 od: %p A072808 convert(V,list); # _Robert Israel_, Nov 30 2024 %t A072808 f[x_] := Mod[DivisorSigma[1, x], EulerPhi[x]]; t=Table[0, {100}]; Do[s=f[n]; If[s<101&&t[[s]]==0, t[[s]]=n], {n, 1, 10000000000}]; t %Y A072808 Cf. A000203, A000010, A028982, A063514, A067192, A067193, A071390. %K A072808 nonn %O A072808 1,1 %A A072808 _Labos Elemer_, Jul 12 2002 %E A072808 Name corrected by _Sean A. Irvine_, Oct 30 2024 %E A072808 Name corrected by _Robert Israel_, Nov 30 2024