A375397 Numbers divisible by the square of some prime factor other than the least. Non-hooklike numbers.
18, 36, 50, 54, 72, 75, 90, 98, 100, 108, 126, 144, 147, 150, 162, 180, 196, 198, 200, 216, 225, 234, 242, 245, 250, 252, 270, 288, 294, 300, 306, 324, 338, 342, 350, 360, 363, 375, 378, 392, 396, 400, 414, 432, 441, 450, 468, 484, 486, 490, 500, 504, 507, 522
Offset: 1
Keywords
Examples
The prime factors of 300 are {2,2,3,5,5}, with maximal anti-runs ((2),(2,3,5),(5)), with minima (2,2,5), so 300 is in the sequence. The terms together with their prime indices begin: 18: {1,2,2} 36: {1,1,2,2} 50: {1,3,3} 54: {1,2,2,2} 72: {1,1,1,2,2} 75: {2,3,3} 90: {1,2,2,3} 98: {1,4,4} 100: {1,1,3,3} 108: {1,1,2,2,2} 126: {1,2,2,4} 144: {1,1,1,1,2,2}
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Range[100],!SameQ@@Min /@ Split[Flatten[ConstantArray@@@FactorInteger[#]],UnsameQ]&]
-
PARI
is(k) = if(k > 1, my(e = factor(k)[, 2]); vecprod(e) > e[1], 0); \\ Amiram Eldar, Oct 26 2024
Extensions
Name edited by Peter Munn, May 08 2025
Comments