login
A396269
Cubefree k that are neither squarefree nor squareful that have more than 2 distinct prime factors.
2
60, 84, 90, 126, 132, 140, 150, 156, 180, 198, 204, 220, 228, 234, 252, 260, 276, 294, 300, 306, 308, 315, 340, 342, 348, 350, 364, 372, 380, 396, 414, 420, 444, 450, 460, 468, 476, 490, 492, 495, 516, 522, 525, 532, 550, 558, 564, 572, 580, 585, 588, 612, 620
OFFSET
1,1
COMMENTS
Intersection of A004709 and A390949.
Intersection of A000977 and A386684.
Intersection of A386684 and A390949.
Intersection of A000977, A004709, and A332785.
Smallest term with m distinct prime factors is 2*A002110(m), m > 2.
LINKS
EXAMPLE
Table of n, a(n) for select n:
n a(n)
---------------------------------
1 60 = 2^2 * 3 * 5
2 84 = 2^2 * 3 * 7
3 90 = 2 * 3^2 * 5
4 126 = 2 * 3^2 * 7
5 132 = 2^2 * 3 * 11
6 140 = 2^2 * 5 * 7
7 150 = 2 * 3 * 5^2
8 156 = 2^2 * 3 * 13
9 180 = 2^2 * 3^2 * 5
22 315 = 3^2 * 5 * 7
32 420 = 2^2 * 3 * 5 * 7
603 4620 = 2^2 * 3 * 5 * 7 * 11
MATHEMATICA
Select[Range[2^10], And[Length[#] > 2, AnyTrue[#, # > 1 &], AllTrue[#, # < 3 &]] &[FactorInteger[#][[All, -1]] ] &]
KEYWORD
nonn,easy
AUTHOR
Michael De Vlieger, May 31 2026
STATUS
approved