OFFSET
1,11
COMMENTS
This is the base-3 up-variation sequence; see A297330.
LINKS
Clark Kimberling, Table of n, a(n) for n = 1..10000
MAPLE
A037844 := proc(n)
a := 0 ;
dgs := convert(n, base, 3);
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 16 2015
MATHEMATICA
CROSSREFS
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
Definition corrected by R. J. Mathar, Oct 16 2015
Updated by Clark Kimberling, Jan 18 2018
STATUS
approved