login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A212314 Numbers m such that B(m^3) = 3*B(m), where B(m) is the binary weight of m (A000120). 3
0, 5, 9, 10, 17, 18, 20, 33, 34, 36, 39, 40, 49, 65, 66, 68, 69, 72, 78, 80, 98, 105, 129, 130, 132, 135, 136, 138, 144, 156, 160, 169, 196, 199, 209, 210, 229, 257, 258, 260, 263, 264, 270, 272, 276, 277, 288, 291, 297, 312, 313, 320, 338, 359, 365, 392, 395, 398, 418 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
2*k is a term if and only if k is a term. - Robert Israel, Nov 06 2022
LINKS
FORMULA
A000120(a(n)^3) = A000120(a(n)) * 3.
MAPLE
select(n -> convert(convert(n^3, base, 2), `+`) = 3*convert(convert(n, base, 2), `+`), [$0..1000]); # Robert Israel, Nov 06 2022
PROG
(Python)
import math
for n in range(10000):
c1 = c2 = 0
t = n
while t:
c1+=t&1
t>>=1
t = n*n*n
while t:
c2+=t&1
t>>=1
if c1*3==c2: print(str(n), end=', ')
(Sage)
s = lambda n: sum((n^3).digits(2)) - 3*sum(n.digits(2))
[n for n in (0..418) if s(n)==0] # Peter Luschny, Oct 24 2013
(PARI) isok(m) = hammingweight(m^3) == 3*hammingweight(m); \\ Michel Marcus, Nov 06 2022
CROSSREFS
Includes A136318.
Sequence in context: A266399 A351205 A164709 * A136318 A242139 A216765
KEYWORD
nonn,base,easy
AUTHOR
Alex Ratushnyak, Oct 24 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 06:30 EDT 2024. Contains 371919 sequences. (Running on oeis4.)