%I #10 Jul 30 2012 15:12:23
%S -1,0,1,1,3,4,2,4,5,3,7,8,4,6,9,7,13,16,12,9,12,10,11,18,14,9,10,14,
%T 17,22,18,19,15,19,20,18,18,21,15,13,18,24,24,27,33,32,43,37,28,31,33,
%U 32,31,29,24,30,34,27,35,35,26,22,32,35,31,37,30,36,19,18
%N Total count of 1's in binary representation of Fibonacci(n) and previous Fibonacci numbers, minus total count of 0's. That is, partial sums of b(n) = -A037861(Fibonacci(n)).
%C b(n) = -A037861(Fibonacci(n)) begins: -1, 1, 1, 0, 2, 1, -2, 2, 1, -2, 4, 1, -4, 2, 3, -2, 6, 3, -4, -3, 3, -2, 1, 7, -4, -5, 1, 4, 3, 5, -4, 1, -4, 4, 1, -2, 0. For example b(6) = -A037861(Fibonacci(6)) = -A037861(8) = -2.
%C Conjecture: a(n) contains infinitely many positive and infinitely many negative terms.
%H T. D. Noe, <a href="/A214923/b214923.txt">Table of n, a(n) for n = 0..10000</a>
%t Accumulate[Table[f = Fibonacci[n]; Count[IntegerDigits[f, 2], 1] - Count[IntegerDigits[f, 2], 0], {n, 0, 100}]] (* _T. D. Noe_, Jul 30 2012 *)
%o (Java)
%o import static java.lang.System.out;
%o import java.math.BigInteger;
%o public class A214923 {
%o public static void main (String[] args) { // 51 minutes
%o BigInteger prpr = BigInteger.valueOf(0);
%o BigInteger prev = BigInteger.valueOf(1), curr;
%o long n, c0=1, c1, sum=0, count0=0, countPos=0, countNeg=0, max=0, min=0, maxAt=0, minAt=0;
%o for (n=0; n<10000000; ++n) {
%o c1 = prpr.bitCount();
%o if (n>0)
%o c0 = prpr.bitLength() - c1;
%o sum += c1-c0;
%o out.printf("%d, ", sum);
%o if (sum>0) ++countPos; else
%o if (sum<0) ++countNeg; else
%o ++count0;
%o if (sum>max) { max=sum; maxAt=n; }
%o if (sum<min) { min=sum; minAt=n; }
%o curr = prev.add(prpr);
%o prpr = prev;
%o prev = curr;
%o //if ((n&65535)==0)
%o // out.printf("%d %d %d %d %d %d %d %d\n", n,
%o // countPos, countNeg, count0, max, maxAt, min, minAt);
%o }
%o out.printf("\n\n%d %d %d %d %d %d %d %d\n", n,
%o countPos, countNeg, count0, max, maxAt, min, minAt);
%o /// 10000000 6882307 3117686 7 3743769 5463976 -2088795 7963846
%o }
%o }
%Y Cf. A000045, A037861.
%K sign,base,easy
%O 0,5
%A _Alex Ratushnyak_, Jul 29 2012