A369938 Numbers whose maximal exponent in their prime factorization is a power of 2.
2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
pow2Q[n_] := n == 2^IntegerExponent[n, 2]; Select[Range[2, 100], pow2Q[Max[FactorInteger[#][[;; , 2]]]] &] Select[Range[2,80],IntegerQ[Log2[Max[FactorInteger[#][[;;,2]]]]]&] (* Harvey P. Dale, Nov 06 2024 *)
-
PARI
ispow2(n) = n >> valuation(n, 2) == 1; is(n) = n > 1 && ispow2(vecmax(factor(n)[, 2]));
Comments