cp's OEIS Frontend

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.

A364998 Numbers k neither squarefree nor prime power such that rad(k)*A119288(k) <= k but rad(k)*A053669(k) > k.

Original entry on oeis.org

18, 24, 90, 120, 126, 150, 168, 180, 198, 234, 264, 306, 312, 342, 408, 414, 456, 522, 552, 558, 630, 666, 696, 738, 744, 774, 840, 846, 888, 954, 984, 990, 1032, 1050, 1062, 1098, 1128, 1170, 1206, 1260, 1272, 1278, 1314, 1320, 1386, 1416, 1422, 1464, 1470, 1494
Offset: 1

Views

Author

Michael De Vlieger, Aug 16 2023

Keywords

Comments

Subset of A126706, numbers that are neither squarefree nor prime powers.
For k in this sequence, let p = A119288(k), q = A053669(k), and r = A007947(k).
A355432(k) > 0, A360543(k) = 0. There exist nondivisors m < k such that rad(m) = rad(k); however, m < k, gcd(m,k) > 1 such that both omega(k) > omega(m) and rad(m) | k do not exist.

Examples

			Let b(n) = A126706(n), S = A360768, and T = A363082.
b(1) = 12 is not in the sequence since p*r = 3*6 = 18 and q*r = 5*6 = 30; both exceed 12, thus 12 is not in S.
b(2) = a(1) = 18 since p*r = 3*6 = 18 and q*r = 5*6 = 30. Indeed, 18 does not exceed 18 and 30 is larger than 18, hence 18 is in both S and T.
b(6) = 36 is not in the sequence since p*r = 3*6 = 18 and q*r = 5*6, and both do not exceed 36, therefore 36 is in S but not T.
b(7) = 40 is not in the sequence since p*r = 5*10 = 50 and q*r = 3*10 = 30. Though 50 > 40, 30 < 40, thus 40 is neither in S nor T, etc.
		

Crossrefs

Programs

  • Mathematica
    Select[Select[Range[1500], Nor[PrimePowerQ[#], SquareFreeQ[#]] &], Function[{k, f}, Function[{p, q, r}, And[p r <= k, q r > k]] @@ {f[[2, 1]], SelectFirst[Prime@ Range[PrimePi[f[[-1, 1]]] + 1], ! Divisible[k, #] &], Times @@ f[[All, 1]]}] @@ {#, FactorInteger[#]} &]

Formula

Intersection of A363082 and A360768.