login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A227927
Numbers n such that phi(sigma(k))/sigma(phi(k)) < phi(sigma(n))/sigma(phi(n)) for all k < n and n is the smallest positive integer with this property.
3
1, 2, 36, 144, 576, 3600, 14400, 921600, 1040400, 4161600, 8643600, 34574400, 266342400, 700131600, 2800526400, 179233689600, 202338032400, 809352129600
OFFSET
1,2
COMMENTS
All known terms excluding a(2) are perfect squares.
EXAMPLE
36 is in the sequence because phi(sigma(36))/sigma(phi(36)) = 18/7 and for all k < 36 phi(sigma(k))/sigma(phi(k)) < 18/7.
MAPLE
s:= n -> numtheory:-phi(numtheory:-sigma(n))/numtheory:-sigma(numtheory:-phi(n)):
a, na, A[1], sA[1]:=1, 1, 1, 1:
1; for i from 2 do ss:=s(i): if ss>a then na:=na+1:A[na]:=ss:a:=ss:sA[na]:=i:print(sA[na]) fi od:
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Letsko, Oct 09 2013
STATUS
approved