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 A071188 #15 Jan 15 2024 01:47:50 %S A071188 1,2,2,3,2,2,2,2,3,2,2,3,2,2,2,5,2,3,2,3,2,2,2,2,3,2,2,3,2,2,2,3,2,2, %T A071188 2,3,2,2,2,2,2,2,2,3,3,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,3,7,2,2,2,3, %U A071188 2,2,2,3,2,2,3,3,2,2,2,5,5,2,2,3,2,2,2,2,2,3 %N A071188 Largest prime factor of number of divisors of n; a(1)=1. %C A071188 From _Robert Israel_, Dec 04 2016: (Start) %C A071188 a(n)=2 if and only if every member of the prime signature of n is of the form 2^k-1. %C A071188 a(m*k) = max(a(m),a(k)) if m and k are coprime. (End) %H A071188 Reinhard Zumkeller, <a href="/A071188/b071188.txt">Table of n, a(n) for n = 1..10000</a> %F A071188 a(n) = A006530(A000005(n)). %F A071188 Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = 2*d(1) + Sum_{k>=2} prime(k)*(d(k) - d(k-1)) = 2.4365518864..., where d(1) = A327839, and for k >= 2, d(k) is the asymptotic density of numbers whose number of divisors is a prime(k)-smooth number, i.e., d(k) = Product_{p prime} ((1 - 1/p) * Sum_{i, A006530(i) <= prime(k)} 1/p^(i-1)) (see A354181 for an example). - _Amiram Eldar_, Jan 15 2024 %p A071188 f:= n -> max(1, numtheory:-factorset(numtheory:-tau(n))): %p A071188 map(f, [$1..100]); # _Robert Israel_, Dec 04 2016 %t A071188 Max[Transpose[FactorInteger[#]][[1]]]&/@DivisorSigma[0,Range[100]] (* _Harvey P. Dale_, Aug 28 2013 *) %o A071188 (Haskell) %o A071188 a071188 = a006530 . a000005 -- _Reinhard Zumkeller_, Sep 04 2013 %o A071188 (PARI) a(n) = if(n == 1, 1, vecmax(factor(numdiv(n))[, 1])); \\ _Michel Marcus_, Dec 05 2016 %Y A071188 Cf. A000005, A006530, A071187, A071190, A078542, A078543, A078544, A124010. %Y A071188 Cf. A327839, A354181. %K A071188 nonn,easy %O A071188 1,2 %A A071188 _Reinhard Zumkeller_, May 15 2002