A165276 Number of even-indexed Fibonacci numbers in the Zeckendorf representation of n.
1, 0, 1, 2, 0, 1, 0, 1, 2, 1, 2, 3, 0, 1, 0, 1, 2, 0, 1, 0, 1, 2, 1, 2, 3, 1, 2, 1, 2, 3, 2, 3, 4, 0, 1, 0, 1, 2, 0, 1, 0, 1, 2, 1, 2, 3, 0, 1, 0, 1, 2, 0, 1, 0, 1, 2, 1, 2, 3, 1, 2, 1, 2, 3, 2, 3, 4, 1, 2, 1, 2, 3, 1, 2, 1, 2, 3, 2, 3, 4, 2, 3, 2, 3, 4, 3, 4, 5, 0, 1, 0, 1, 2, 0, 1, 0, 1, 2, 1, 2, 3, 0, 1, 0, 1
Offset: 1
Keywords
Examples
6 = 5 + 1 = F(5) + F(2), so that a(6) = 1.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
fibEvenCount[n_] := Plus @@ (Reverse@IntegerDigits[n, 2])[[1 ;; -1 ;; 2]]; fibEvenCount /@ Select[Range[1000], BitAnd[#, 2 #] == 0 &] (* Amiram Eldar, Jan 20 2020 *)
Comments