OFFSET
1,8
COMMENTS
This is the base-4 down-variation sequence; see A297330. - Clark Kimberling, Jan 18 2018
LINKS
Clark Kimberling, Table of n, a(n) for n = 1..10000
MAPLE
A037854 := proc(n)
a := 0 ;
dgs := convert(n, base, 4);
for i from 2 to nops(dgs) do
if op(i, dgs)>op(i-1, dgs) then
a := a+op(i, dgs)-op(i-1, dgs) ;
end if;
end do:
a ;
end proc: # R. J. Mathar, Oct 19 2015
MATHEMATICA
d[n_] := d[n] = Differences[RealDigits[n, 4][[1]]]
Table[Total[Select[d[n], # > 0 &]], {n, 1, z}]; (* A037845 *)
-Table[Total[Select[d[n], # < 0 &]], {n, 1, z}]; (* A037854 *)
(* Clark Kimberling, Oct 20 2015 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
Definition swapped with A037845 by R. J. Mathar, Oct 19 2015
STATUS
approved