A360014 Numbers whose exponent of 2 in their canonical prime factorization is equal to the maximum of the other exponents.
1, 6, 10, 14, 22, 26, 30, 34, 36, 38, 42, 46, 58, 62, 66, 70, 74, 78, 82, 86, 94, 100, 102, 106, 110, 114, 118, 122, 130, 134, 138, 142, 146, 154, 158, 166, 170, 174, 178, 180, 182, 186, 190, 194, 196, 202, 206, 210, 214, 216, 218, 222, 226, 230, 238, 246, 252
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
q[n_] := 2^(e = IntegerExponent[n, 2]) < n && e == Max[FactorInteger[n/2^e][[;; , 2]]]; q[1] = True; Select[Range[250], q]
-
PARI
is(n) = {my(e = valuation(n, 2), m = n >> e); n == 1 ||(m > 1 && e == vecmax(factor(m)[,2]))};
Comments