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 A276000 #20 Apr 24 2020 22:49:01 %S A276000 1,3,6,6,10,10,14,14,14,14,22,22,26,26,26,26,34,34,38,38,38,38,46,46, %T A276000 46,46,46,46,58,58,62,62,62,62,62,62,74,74,74,74,82,82,86,86,86,86,94, %U A276000 94,94,94,94,94,106,106,106,106,106,106,118,118,122,122,122,122 %N A276000 Least k such that n! divides phi(k!) (k > 0). %H A276000 Robert Israel, <a href="/A276000/b276000.txt">Table of n, a(n) for n = 1..5000</a> %F A276000 a(n) = 2*A007917(n) for n>2. - _Andrey Zabolotskiy_, Aug 16 2016 %e A276000 a(2) = 3 because phi(3!) is divisible by 2!. %p A276000 N:= 100: # for a(1)..a(N) %p A276000 V:= Vector(N): n:= 0: %p A276000 for k from 1 while n < N do %p A276000 r:= numtheory:-phi(k!); %p A276000 for i from n+1 to N while r mod (i!) = 0 do %p A276000 V[i]:= k; n:= i; %p A276000 od; %p A276000 od: %p A276000 convert(V,list);# _Robert Israel_, Apr 24 2020 %t A276000 Array[Block[{k = 1}, While[Mod[EulerPhi[k!], #!] != 0, k++]; k] &, 64] (* _Michael De Vlieger_, Apr 24 2020 *) %o A276000 (PARI) a(n) = {my(k = 1); while(eulerphi(k!) % n!, k++); k; } %Y A276000 Cf. A048855, A007917. %K A276000 nonn %O A276000 1,2 %A A276000 _Altug Alkan_, Aug 16 2016