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!)
A335835 Sort the run lengths in binary expansion of n in desccending order (with multiplicities). 4
0, 1, 2, 3, 6, 5, 6, 7, 14, 13, 10, 13, 12, 13, 14, 15, 30, 29, 26, 25, 26, 21, 26, 29, 28, 25, 26, 25, 28, 29, 30, 31, 62, 61, 58, 57, 50, 53, 50, 57, 58, 53, 42, 53, 50, 53, 58, 61, 60, 57, 50, 51, 50, 53, 50, 57, 56, 57, 58, 57, 60, 61, 62, 63, 126, 125 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
This sequence preserves the number of runs (A005811) and the length (A070939) of the binary representation of a number.
LINKS
FORMULA
a(a(n)) = a(n).
EXAMPLE
For n = 72:
- the binary representation of 72 is "1001000",
- the corresponding run lengths are: 1, 2, 1, 3,
- in descending order: 3, 2, 1, 1,
- so the binary representation of a(72) is "1110010",
- and a(72) = 114.
PROG
(PARI) torl(n) = { my (rr=[]); while (n, my (r=valuation(n+(n%2), 2)); rr = concat(r, rr); n\=2^r); rr }
fromrl(rr) = { my (v=0); for (k=1, #rr, v = (v+(k%2))*2^rr[k]-(k%2)); v }
a(n) = { fromrl(vecsort(torl(n), , 4)) }
CROSSREFS
Cf. A005811, A037016 (fixed points), A070939, A101211, A335834.
Sequence in context: A340774 A345068 A057723 * A361480 A142151 A003968
KEYWORD
nonn,base,look,easy
AUTHOR
Rémy Sigrist, Jun 26 2020
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 05:19 EDT 2024. Contains 371782 sequences. (Running on oeis4.)