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!)
A080413 Take the rightmost three binary digits of n (for n<4 padded with leading zeros) and rotate left 1 digit. 4
0, 2, 4, 6, 1, 3, 5, 7, 8, 10, 12, 14, 9, 11, 13, 15, 16, 18, 20, 22, 17, 19, 21, 23, 24, 26, 28, 30, 25, 27, 29, 31, 32, 34, 36, 38, 33, 35, 37, 39, 40, 42, 44, 46, 41, 43, 45, 47, 48, 50, 52, 54, 49, 51, 53, 55, 56, 58, 60, 62, 57, 59, 61, 63, 64, 66, 68, 70, 65, 67, 69, 71, 72 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
For n>7: a(n) = 8*floor(n/8) + a(n mod 8);
permutation of natural numbers with inverse = A080414: A080414(a(n))=n, a(A080414(n))=n;
a(a(n))=A080414(n), A080414(A080414(n))=a(n), a(a(a(n)))=n.
LINKS
EXAMPLE
a(2)=a('010')='100'=4; a(3)=a('011')='110'=6; a(4)=a('100')='001'=1; a(5)=a('101')='011'=3;
a(20)=a('10'100')='10'001'=17; a(21)=a('10'101')='10'011'=19.
PROG
(Python)
def A080413(n): return ((n&3)<<1)+bool(n&4)+(n&-8) # Chai Wah Wu, Jan 21 2023
CROSSREFS
Sequence in context: A125944 A077069 A261596 * A004517 A254350 A357049
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Feb 17 2003
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 May 3 16:04 EDT 2024. Contains 372221 sequences. (Running on oeis4.)