The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A037845 a(n) = Sum_{i=1..m, d(i)<d(i-1)} d(i-1)-d(i), where Sum_{i=0..m} d(i)*4^i is the base 4 representation of n. 3
0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0, 1, 2, 1, 1, 1, 2, 2, 2, 2, 2, 0, 1, 2, 3, 0, 0, 1, 2, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 2, 3, 0, 0, 1, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 2, 3, 1, 1, 2, 3, 2, 2, 2, 3, 3, 3, 3, 3, 0, 1, 2, 3, 0, 0, 1, 2, 1, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,7
LINKS
MAPLE
A037845 := 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
Sequence in context: A089813 A343023 A337760 * A037881 A024326 A287619
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
Definition swapped with A037854. - R. J. Mathar, Oct 19 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 29 07:06 EDT 2024. Contains 372926 sequences. (Running on oeis4.)