login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A037862
a(n)=(number of digits <=1)-(number of digits >1) in base 3 representation of n.
1
1, -1, 2, 2, 0, 0, 0, -2, 3, 3, 1, 3, 3, 1, 1, 1, -1, 1, 1, -1, 1, 1, -1, -1, -1, -3, 4, 4, 2, 4, 4, 2, 2, 2, 0, 4, 4, 2, 4, 4, 2, 2, 2, 0, 2, 2, 0, 2, 2, 0, 0, 0, -2, 2, 2, 0, 2, 2, 0, 0, 0, -2, 2, 2, 0, 2, 2, 0, 0, 0, -2, 0, 0, -2, 0, 0, -2, -2, -2, -4, 5, 5, 3
OFFSET
1,3
MAPLE
A037862 := proc(n)
a := 0 ;
dgs := convert(n, base, 3);
for i from 1 to nops(dgs) do
if op(i, dgs)<=1 then
a := a+1 ;
else
a := a-1 ;
end if;
end do:
a ;
end proc: # R. J. Mathar, Oct 16 2015
MATHEMATICA
b3d[n_]:=Module[{idn=IntegerDigits[n, 3]}, Count[idn, _?(#<2&)]-Count[idn, _?(#>1&)]]; Array[b3d, 90] (* Harvey P. Dale, Nov 08 2011 *)
CROSSREFS
Sequence in context: A054978 A129438 A125096 * A337113 A285244 A263148
KEYWORD
base,sign
STATUS
approved