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 A067127 #8 Dec 10 2024 20:01:51 %S A067127 4,6,8,9,14,15,16,20,21,25,33,35,39,45,49,65,77,85,91,95,111,115,119, %T A067127 121,143,155,161,169,187,203,209,217,221,247,253,287,289,319,323,341, %U A067127 361,391,403,407,427,437,451,473,481,493,517,527,529,583,589,611,629 %N A067127 Composite numbers for which phi(n) >= phi(k) for all composite k from 1 to n-1. %H A067127 Andrew Howroyd, <a href="/A067127/b067127.txt">Table of n, a(n) for n = 1..10000</a> %e A067127 33 is a member as phi(33)=20 which is >= the maximum phi value for composite numbers less than 33, namely phi(25)=20. %o A067127 (PARI) lista(n)={my(L=List(), m=0); for(k=2, oo, if(!isprime(k), my(t=eulerphi(k)); if(t>=m, listput(L,k); m=t; if(#L>=n, return(Vec(L))))))} \\ _Andrew Howroyd_, Dec 10 2024 %Y A067127 Cf. A067126, A131195. %K A067127 easy,nonn %O A067127 1,1 %A A067127 _Amarnath Murthy_, Jan 09 2002