A364702 Numbers k in A361098 that are not divisible by A007947(k)^2.
48, 50, 54, 75, 80, 96, 98, 112, 135, 147, 160, 162, 189, 192, 224, 240, 242, 245, 250, 252, 270, 294, 300, 320, 336, 338, 350, 352, 360, 363, 375, 378, 384, 396, 405, 416, 448, 450, 468, 480, 486, 490, 504, 507, 525, 528, 540, 550, 560, 567, 578, 588, 594, 600
Offset: 1
Keywords
Examples
Let B = A126706. B(1) = 12 is not in the sequence since 3*6 > 12. B(2) = 18 is not in the sequence, since, though 3*6 = 18, 5*6 > 18. B(6) = S(1) = 36 is not in the sequence since, though 3*6 < 36 and 5*6 < 36, rad(36)^2 = 6^2 | 36, hence B(6) = T(1). B(10) = S(2) = a(1) = 48 is in the sequence since rad(48) = 6, and 6^2 does not divide 48. B(11) = S(3) = a(2) = 50 is in the sequence since rad(50) = 10, and 10^2 does not divide 50, etc.
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
nn = 2^10; a053669[n_] := If[OddQ[n], 2, p = 2; While[Divisible[n, p], p = NextPrime[p]]; p]; s = Select[Range[nn], Nor[PrimePowerQ[#], SquareFreeQ[#]] &]; Reap[Do[n = s[[j]]; If[And[#1*a053669[n] < n, #1*#2 <= n, ! Divisible[n, #1^2]] & @@ {Times @@ #, #[[2]]} &@ FactorInteger[n][[All, 1]], Sow[n]], {j, Length[s]}] ][[-1, -1]]
Comments