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!)
A136490 Numbers whose binary representation is contained in that of their cubes. 4
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 17, 18, 20, 23, 24, 28, 29, 30, 31, 32, 33, 34, 36, 39, 40, 41, 48, 56, 58, 60, 62, 63, 64, 65, 66, 68, 72, 80, 91, 96, 99, 111, 112, 115, 116, 120, 124, 126, 127, 128, 129, 130, 132, 136, 144, 160, 192, 222, 224, 230, 232 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Complement of A136491.
A136510(a(n)) <= 3 for n>0. - Reinhard Zumkeller, Jan 03 2008
LINKS
MATHEMATICA
Select[Range[0, 300], StringContainsQ[IntegerString[#^3, 2], IntegerString[#, 2]] &] (* Paolo Xausa, Apr 04 2024 *)
PROG
(Python)
def ok(n): return bin(n)[2:] in bin(n**3)[2:]
print([k for k in range(250) if ok(k)]) # Michael S. Branicky, Apr 04 2024
CROSSREFS
Cf. A018826 (squares), A029942 (base 10), A136491, A136510.
Sequence in context: A125121 A333762 A295235 * A129523 A243463 A247805
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Jan 01 2008
EXTENSIONS
More terms from Reinhard Zumkeller, Jan 03 2008
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 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)