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.
%I A210619 #29 Jul 25 2021 11:18:23 %S A210619 2,6,7,17,19,20,46,51,53,54,122,135,140,142,143,321,355,368,373,375, %T A210619 376,842,931,965,978,983,985,986,2206,2439,2528,2562,2575,2580,2582, %U A210619 2583,5777,6387,6620,6709,6743,6756,6761,6763,6764,15126,16723,17333,17566,17655,17689,17702,17707,17709,17710 %N A210619 Triangle of numbers with n 1's and n 0's in their representation in base of Fibonacci numbers (A014417). %C A210619 There are n such 2n-bit numbers. For example, 17, 19, and 20 all require six bits: 100101, 101001, 101010. The least number in each group is Fib(2n+1) + Fib(2n-1) - 1, which is A005592(n). The greatest number in each group is Fib(2n+2) - 1, which is A035508(n). - _T. D. Noe_, May 08 2012 %H A210619 T. D. Noe, <a href="/A210619/b210619.txt">Table of rows 1 to 49, flattened</a> %F A210619 Numbers with equal counts of 1's and 0's in their Zeckendorf representation. %F A210619 From _Kevin Ryde_, Jul 24 2021: (Start) %F A210619 T(n,k) = Fibonacci(2*n+2) - Fibonacci(2*(n-k)) - 1. %F A210619 G.f.: x*y*(2 - 2*x + x^2 - (1 + x + x^2)*x*y + x^3*y^2) / ( (1-x) * (1 - 3*x + x^2) * (1 - x*y) * (1 - 3*x*y + (x*y)^2) ). %F A210619 (End) %e A210619 Representation of 20 is 101010, three 1's and three 0's, so 20 is in the sequence. %e A210619 Representation of 22 is 1000001, two 1's and five 0's, so 22 is not in the sequence. %t A210619 nn = 10; f = Join[{0}, Accumulate[Fibonacci[Range[2, 2*nn, 2] - 1]]]; t = Table[hi = f[[n+1]] - 1; Reverse[Table[hi - f[[i]], {i, n - 1}]], {n, 2, nn}]; t = Flatten[t] (* _T. D. Noe_, May 08 2012 *) %Y A210619 Cf. A014417, A003714, A000045 (Fibonacci numbers). %Y A210619 Cf. A005592 (column k=1), A035508 (main diagonal), A249450 (second diagonal), A346434 (in Fibonacci base). %K A210619 nonn,tabl %O A210619 1,1 %A A210619 _Alex Ratushnyak_, May 07 2012