cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A053641 Rotate n one binary digit to the right, drop leading zeros, then rotate one binary digit to the left.

Original entry on oeis.org

1, 1, 3, 1, 5, 3, 7, 1, 9, 3, 11, 5, 13, 7, 15, 1, 17, 3, 19, 5, 21, 7, 23, 9, 25, 11, 27, 13, 29, 15, 31, 1, 33, 3, 35, 5, 37, 7, 39, 9, 41, 11, 43, 13, 45, 15, 47, 17, 49, 19, 51, 21, 53, 23, 55, 25, 57, 27, 59, 29, 61, 31, 63, 1
Offset: 1

Views

Author

Henry Bottomley, Mar 22 2000

Keywords

Examples

			a(60) = 29 because starting with 111100 the right rotation produces 011110,  written as 11110 (i.e., 30) and the left rotation produces 11101 (i.e., 29).
		

Crossrefs

Cf. A053642 (left then right).

Programs

  • Mathematica
    rtt[f_, n_] := FromDigits[f[IntegerDigits[n, 2]], 2];
    Array[rtt[RotateLeft, rtt[RotateRight, #]]&, 100] (* Paolo Xausa, Jan 16 2024 *)
  • PARI
    a(n) = if(bitand(n,1), n, n+1 - 1<Kevin Ryde, Jan 13 2024

Formula

a(n) = A006257(A038572(n)).
a(n) = n if n odd, n - 2^k + 1 if n even and 2^k <= n < 2^(k+1).
Showing 1-1 of 1 results.