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 A194095 #16 Mar 16 2023 16:03:42 %S A194095 0,1,3,4,6,7,10,14,15,17,20,22,24,30,32,37,44,45,46,54,60,62,66,68,74, %T A194095 77,78,92,93,96,114,124,138,154,160,168,186,188,189,191,204,216,234, %U A194095 252,282,314,328,348,378,380,391,420,440,468,474,488,504,508,564 %N A194095 Record values in A056595. %C A194095 a(n) = A056595(A194096(n)) and A056595(m) < a(n) for m < A194096(n). %H A194095 Amiram Eldar, <a href="/A194095/b194095.txt">Table of n, a(n) for n = 1..655</a> %t A194095 mx = -1; t = {}; Do[s = Length[Select[Divisors[n], ! IntegerQ[Sqrt[#]] &]]; If[s > mx, mx = s; AppendTo[t, {n, mx}]], {n, 1000000}]; Transpose[t][[2]] (* _T. D. Noe_, Aug 15 2011 *) %t A194095 DeleteDuplicates[Table[Count[Divisors[n],_?(#!=Floor[Sqrt[#]]^2&)],{n,10^6}],GreaterEqual] (* _Harvey P. Dale_, Mar 16 2023 *) %Y A194095 Cf. A002183. %K A194095 nonn %O A194095 1,3 %A A194095 _Reinhard Zumkeller_, Aug 15 2011