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!)
A300571 a(n) is the concatenation n in base 2, n-1 in base 2, ..., 0 in base 2. 2
0, 10, 1010, 111010, 100111010, 101100111010, 110101100111010, 111110101100111010, 1000111110101100111010, 10011000111110101100111010, 101010011000111110101100111010, 1011101010011000111110101100111010, 11001011101010011000111110101100111010 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = A300570(n)*10. - Chai Wah Wu, Feb 26 2023
PROG
(Python)
from functools import reduce
def A300571(n): return int(bin(reduce(lambda i, j:(i<<j.bit_length())+j, range(n, 0, -1), 0))[2:])*10 # Chai Wah Wu, Feb 26 2023
CROSSREFS
Sequence in context: A080070 A303610 A080120 * A274069 A325493 A006937
KEYWORD
nonn,base
AUTHOR
Seiichi Manyama, Mar 08 2018
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 19 16:21 EDT 2024. Contains 371794 sequences. (Running on oeis4.)