OFFSET
1,1
COMMENTS
The data correspond to the 3rd, 36th, 42nd, 59th, 116th, 156th, 168th, 211th, 237th Fibonacci numbers.
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..70
EXAMPLE
a(2) = F(36) = 14930352 = 111000111101000110110000_2 has an equal number of 0's and 1's.
MATHEMATICA
Select[Fibonacci[Range[300]], Equal @@ DigitCount[#, 2] &] (* Paolo Xausa, Oct 31 2024 *)
PROG
(Python)
f1=1; f2=1
while f1>0:
f3=f1+f2
c = bin(f3).split('b')[1]
if c.count("1")==c.count("0"):
print(f3)
f1=f2; f2=f3
CROSSREFS
KEYWORD
nonn,easy,base
AUTHOR
Abhiram R Devesh, Jun 26 2015
STATUS
approved
