OFFSET
0,5
LINKS
Indranil Ghosh, Table of n, a(n) for n = 0..16384 (terms 0..1024 from Joseph Myers)
EXAMPLE
For n = 11, 11_10 = 23_4. So, a(11) = 32_4 - 23_4 = 14 - 11 = 3. - Indranil Ghosh, Feb 02 2017
MATHEMATICA
b4km[n_]:=Module[{idn4=Sort[IntegerDigits[n, 4]]}, FromDigits[ Reverse[ idn4], 4]-FromDigits[idn4, 4]]; Array[b4km, 80, 0]
PROG
(PARI) cons(m) = {local(b, r); r=0; b=1; for(i=1, matsize(m)[2], r=r+b*m[i]; b=b*4); r}
A165012(n) = {local(m, r); r=[]; m=n; while(m>0, r=concat(m%4, r); m=floor(m/4)); cons(vecsort(r, , 0))-cons(vecsort(r, , 4))} \\ Michael B. Porter, Nov 05 2009
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Joseph Myers, Sep 04 2009
STATUS
approved