OFFSET
1,1
COMMENTS
This sequence is infinite, since if k is in the sequence then so is 2k. - Charles R Greathouse IV, Sep 27 2016
LINKS
Nathaniel Johnston, Table of n, a(n) for n = 1..2500
EXAMPLE
219^2 decimal = 1011101101011001 binary, and 219^3 decimal = 101000000100010100100011; Since the cube has fewer ones in its binary expansion than the square (eight versus ten), 219 is in the list.
MAPLE
A192086 := proc(n) return `if`(add(b, b=convert(n^3, base, 2))<add(b, b=convert(n^2, base, 2)), n, NULL): end: seq(A192086(n), n=0..3000); # Nathaniel Johnston, Jun 23 2011
MATHEMATICA
Select[Range[2800], DigitCount[#^3, 2, 1]<DigitCount[#^2, 2, 1]&] (* Harvey P. Dale, Jun 30 2011 *)
Flatten@Position[Flatten@(Differences@DigitSum[#^2*{1, #}, 2] & /@Range@15000), _?(# < 0 &)] (* Hans Rudolf Widmer, Aug 05 2024 *)
PROG
(Magma) [ n: n in [0..2600] | &+Intseq(n^3, 2) lt &+Intseq(n^2, 2) ]; // Bruno Berselli, Jun 24 2011
(PARI) is(n)=hammingweight(n^3)<hammingweight(n^2) \\ Charles R Greathouse IV, Sep 27 2016
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Carl R. White, Jun 23 2011
STATUS
approved