OFFSET
1,1
COMMENTS
Subsequence of A304365 and differs from it by not having the terms 1, 144, 216, 324, 400, ... .
Subsequence of A038109 and differs from it by not having the terms 144, 324, 400, 576, 720, ... .
Numbers whose largest unitary divisor that is a square (A350388) is a square of squarefree number (A062503) that is larger than 1.
LINKS
FORMULA
A375033(a(n)) = 2.
EXAMPLE
4 = 2^2 is a term because it has the exponent 2 in its prime factorization, and no higher even exponent.
144 = 2^4 * 3^2 is not a term because it has the exponent 4 in its prime factorization which is even and larger than 2.
MATHEMATICA
q[n_] := Max[Select[FactorInteger[n][[;; , 2]], EvenQ]] == 2; Select[Range[250], q]
PROG
(PARI) is(k) = {my(e = select(x -> !(x % 2), factor(k)[, 2])); #e > 0 && vecmax(e) == 2; }
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Jul 28 2024
STATUS
approved