OFFSET
1,1
COMMENTS
Intersection of A052486 (Achilles numbers) and A391115 (numbers that are neither 4-free nor 4-full).
A052486 is the union of this sequence, A375073 (noncubefull Achilles numbers), and A391011 (4-full Achilles numbers).
This sequence intersects both A388293 (cubefull Achilles numbers) and A390539 (noncubefull Achilles numbers).
Numbers whose set of prime power factor exponents m is setwise coprime, contains at least one m >= 4, but not all m >= 4, yet all m > 1.
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
EXAMPLE
Table of n, a(n) for select n:
n a(n)
---------------------------
1 288 = 2^5 * 3^2
2 432 = 2^4 * 3^3
3 648 = 2^3 * 3^4
4 800 = 2^5 * 5^2
5 864 = 2^5 * 3^3
6 972 = 2^2 * 3^5
7 1152 = 2^7 * 3^2
8 1568 = 2^5 * 7^2
9 1944 = 2^3 * 3^5
10 2000 = 2^4 * 5^3
19 6075 = 3^5 * 5^2
22 7200 = 2^5 * 3^2 * 5^2
MATHEMATICA
With[{nn = 25000}, Union@ Flatten@ Table[If[And[GCD @@ # == 1, 0 < Count[#, _?(# > 3 &)] < Length[#]] &[FactorInteger[#][[;; , -1]]], #, Nothing] &[a^2*b^3], {b, Surd[nn, 3]}, {a, Sqrt[nn/b^3]} ] ]
PROG
(PARI) is_A392134(n) = if(n<=1, 0, (e->(1==gcd(e) && 3==bitor(vecmin(e), 1) && vecmax(e)>3))(factor(n)[, 2])); \\ Antti Karttunen, Jan 22 2026
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Michael De Vlieger, Jan 15 2026
STATUS
approved
