A157942 Numbers n divisible by the largest prime <= sqrt(n), A007917(A000196(n)).
4, 6, 8, 9, 12, 15, 18, 21, 24, 25, 30, 35, 40, 45, 49, 56, 63, 70, 77, 84, 91, 98, 105, 112, 119, 121, 132, 143, 154, 165, 169, 182, 195, 208, 221, 234, 247, 260, 273, 286, 289, 306, 323, 340, 357, 361, 380, 399, 418, 437, 456, 475, 494, 513, 529, 552, 575, 598
Offset: 1
Keywords
Programs
-
Mathematica
Select[Range[4,599],IntegerQ[#/Prime[PrimePi[Sqrt[#]]]]&] (* Jayanta Basu, May 03 2013 *)
-
PARI
for( n=4,999, n % precprime(sqrtint(n)) || print1(n","))
Comments