login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

Convert n to base 8, move least significant digit to most significant digit and convert back to base 10.
3

%I #24 Apr 28 2017 17:28:56

%S 0,1,2,3,4,5,6,7,1,9,17,25,33,41,49,57,2,10,18,26,34,42,50,58,3,11,19,

%T 27,35,43,51,59,4,12,20,28,36,44,52,60,5,13,21,29,37,45,53,61,6,14,22,

%U 30,38,46,54,62,7,15,23,31,39,47,55,63,8,72,136,200,264,328

%N Convert n to base 8, move least significant digit to most significant digit and convert back to base 10.

%C a(8*n) = n.

%C a(8^n) = 8^(n-1).

%C Fixed points of the transform are listed in A048333.

%H Paolo P. Lava, <a href="/A255593/b255593.txt">Table of n, a(n) for n = 0..1000</a>

%e 13 in base 8 is 15: moving the least significant digit as the most significant one we have 51 that is 41 in base 10.

%p with(numtheory): P:=proc(q,h) local a,b,k,n; print(0);

%p for n from 1 to q do

%p a:=convert(n,base,h); b:=[]; for k from 2 to nops(a) do b:=[op(b),a[k]]; od; a:=[op(b),a[1]];

%p a:=convert(a,base,h,10); b:=0; for k from nops(a) by -1 to 1 do b:=10*b+a[k]; od;

%p print(b); od; end: P(10^4,8);

%t roll[n_, b_] := Block[{w = IntegerDigits[n, b]}, Prepend[Most@ w, Last@ w]]; b = 8; FromDigits[#, b] & /@ (roll[#, b] & /@ Range[0, 69]) (* _Michael De Vlieger_, Mar 04 2015 *)

%t Table[FromDigits[RotateRight[IntegerDigits[n,8]],8],{n,0,70}] (* _Harvey P. Dale_, Apr 28 2017 *)

%Y Cf. A030107, A038572, A048333, A255588-A255592, A255594, A048787, A255689-A255693.

%K nonn,easy,base

%O 0,3

%A _Paolo P. Lava_, Mar 02 2015