login
A390718
Numbers k whose sum of prime factors (with multiplicity) is a power of 2.
1
2, 4, 15, 16, 18, 39, 55, 66, 87, 98, 140, 168, 183, 189, 200, 225, 240, 247, 256, 270, 288, 295, 322, 324, 354, 418, 442, 460, 552, 583, 621, 748, 799, 943, 1064, 1197, 1255, 1352, 1425, 1484, 1506, 1520, 1521, 1527, 1634, 1710, 1785, 1824, 1904, 1922, 2052, 2071, 2120, 2125, 2142, 2145, 2288
OFFSET
1,1
COMMENTS
If k is a term, then so is k^2.
LINKS
EXAMPLE
a(3) = 15 is a term because 15 = 3 * 5 and 3 + 5 = 8 = 2^3.
MAPLE
filter:= proc(n) local t, s;
t:= add(s[1]*s[2], s=ifactors(n)[2]);
t = 2^padic:-ordp(t, 2)
end proc:
select(filter, [$1..10^4]);
MATHEMATICA
q[k_] := k > 1 && (# == 2^IntegerExponent[#, 2])& @ (Plus @@ Times @@@ FactorInteger[k]); Select[Range[2300], q] (* Amiram Eldar, Nov 16 2025 *)
CROSSREFS
Sequence in context: A196239 A019543 A304568 * A271645 A265483 A357692
KEYWORD
nonn
AUTHOR
Will Gosnell and Robert Israel, Nov 16 2025
STATUS
approved