OFFSET
1,1
COMMENTS
The number of terms not exceeding 10^m, for m = 1, 2, ..., are 1, 25, 254, 2567, 25730, 257286, 2572950, 25729433, 257294360, 2572944786, ... . Apparently, the asymptotic density of this sequence exists and equals 0.257294... . - Amiram Eldar, Jun 24 2022
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
48 = 2^4 * 3^1; so the exponents in the prime factorization of 48 are 4 and 1. 48 is not coprime to 4; therefore 48 is included in this sequence.
MATHEMATICA
Select[Range[3000], GCD[ #, Product[FactorInteger[ # ][[i, 2]], {i, 1, Length[FactorInteger[ # ]]}]] > 1 &] (* Stefan Steinerberger, Mar 16 2008 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Mar 11 2008
EXTENSIONS
More terms from Stefan Steinerberger, Mar 16 2008
STATUS
approved