cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A222295 Conjectured number of Fibonacci numbers with exactly n bits set in their binary representation.

This page as a plain text file.
%I A222295 #12 Mar 11 2013 13:57:04
%S A222295 1,4,4,2,3,3,4,1,4,2,1,5,5,2,2,2,5,4,3,2,2,2,3,5,3,3,2,4,2,1,4,3,2,3,
%T A222295 3,1,6,3,2,3,3,4,4,5,0,0,3,3,2,2,5,4,3,1,5,2,2,2,5,7,3,0,0,1,2,7,3,3,
%U A222295 2,4,3,1,2,4,4,2,0,3,1,3,7,3,4,1,3,4,3
%N A222295 Conjectured number of Fibonacci numbers with exactly n bits set in their binary representation.
%H A222295 T. D. Noe, <a href="/A222295/b222295.txt">Table of n, a(n) for n = 0..1000</a>
%e A222295 We set a(1) = 4 because Fib(1) = 1, Fib(2) = 1, Fib(3) = 2, and Fib(6) = 8.
%t A222295 f = Fibonacci[Range[0,500]]; Table[Length[Select[f, Total[IntegerDigits[#, 2]] == n &]], {n, 0, 87}]
%Y A222295 Cf. A004685 (Fibonacci numbers in binary), A221158 (two bits set), A222296.
%Y A222295 Cf. A011373 (number of bits set in each Fibonacci number).
%Y A222295 Cf. A222601, A222602, A222757, A222758.
%K A222295 nonn,base
%O A222295 0,2
%A A222295 _T. D. Noe_, Feb 22 2013