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 A376421 #7 Sep 23 2024 13:37:32 %S A376421 24,42,48,50,54,60,75,78,100,102,108,110,112,114,120,126,150,156,162, %T A376421 165,168,170,174,180,186,189,190,192,198,200,204,210,216,220,222,224, %U A376421 225,228,230,231,234,238,240,242,245,250,294,300,312,315,318,324,330,336 %N A376421 Numbers m with largest nondivisor k <= m such that rad(k) | m is not a prime power, where rad = A007947. %C A376421 The term prime power used here refers to k in A246547. %C A376421 Includes m such that the largest k = A373736(m) in row m of A272618 is not in A246547. %C A376421 Subset of A024619, since for prime powers m = p^e, e >= 1, all k <= m such that rad(k) | m also divide m. %C A376421 Contains A376422, since nondivisor k such that rad(k) | m must be composite, and composite prime powers m in A246547 are a subset of A001694. %H A376421 Michael De Vlieger, <a href="/A376421/b376421.txt">Table of n, a(n) for n = 1..32299</a> %e A376421 6 is not included since nondivisor 4 = 2^2 is such that rad(4) | 6, but 4 is a perfect power of a prime. %e A376421 24 is included since nondivisor 18 = 2 * 3^2 is such that rad(18) | 24 and is not a prime power. %e A376421 42 is included since nondivisor 36 = 2^2 * 3^2 is such that rad(36) | 42 and 36 is not a prime power. %e A376421 60 is in the sequence because nondivisor 54 = 2 * 3^3 but rad(54) | 60 and 54 is not a prime power, etc. %t A376421 rad[x_] := Times @@ FactorInteger[x][[All, 1]]; %t A376421 Table[If[PrimePowerQ[n], Nothing, %t A376421 If[PrimePowerQ[#], Nothing, n] &@ %t A376421 SelectFirst[Range[n - 1, 1, -1], %t A376421 And[! Divisible[n, #], Divisible[n, rad[#]]] &] ], {n, 2, 336}] %Y A376421 Cf. A024619, A007947, A246547, A272618, A373736, A376422. %K A376421 nonn %O A376421 1,1 %A A376421 _Michael De Vlieger_, Sep 22 2024