OFFSET
1,1
LINKS
Robert G. Wilson v, Table of n, a(n) for n = 1..119
EXAMPLE
139583862445 is a Fibonacci number with an equal number of odd and even digits.
MATHEMATICA
fQ[n_] := Block[{id = IntegerDigits@ n}, Length@ Select[id, OddQ@ # &] == Length@ id/2]; lst = {}; Do[ fb = Fibonacci@ n; If[ fQ@ fb, AppendTo[lst, fb]], {n, 300}]; lst (* Robert G. Wilson v, Sep 24 2008 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Parthasarathy Nambi, Sep 13 2008
EXTENSIONS
More terms from Robert G. Wilson v, Sep 24 2008
STATUS
approved