Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #5 Nov 21 2013 12:47:49
%S 8,5702887,27777890035288,83621143489848422977,51680708854858323072,
%T 5193981023518027157495786850488117,178890334785183168257455287891792,
%U 39679027332006820581608740953902289877834488152161
%N Smallest Fibonacci number containing exactly n 8's.
%e a(2)=5702887 so 5702887 is the smallest Fibonacci number containing exactly two 8's.
%t With[{fibs=Fibonacci[Range[1000]]},Table[First[Select[fibs, DigitCount[#,10,8] ==n&]],{n,10}]] (* _Harvey P. Dale_, Apr 21 2011 *)
%K base,nonn
%O 1,1
%A _Shyam Sunder Gupta_, Jul 14 2002