OFFSET
1,1
COMMENTS
There are 11 terms in the series and 11-digit number 95880078250 is the last number to satisfy the requirements.
EXAMPLE
95880078250 is divisible by Fibonacci(11) = 89;
9588007825 is divisible by Fibonacci(10) = 55;
958800782 is divisible by Fibonacci(9) = 34;
95880078 is divisible by Fibonacci(8) = 21;
9588007 is divisible by Fibonacci(7) = 13;
958800 is divisible by Fibonacci(6) = 8;
95880 is divisible by Fibonacci(5) = 5;
9588 is divisible by Fibonacci(4) = 3;
958 is divisible by Fibonacci(3) = 2;
95 is divisible by Fibonacci(2) = 1;
9 is divisible by Fibonacci(1) = 1.
MATHEMATICA
a=Table[j, {j, 3, 10, 2}]; r=2; t={}; While[!a == {}, n=Length[a]; nmax=Last[a]; k=1; b={}; While[!k>n, z0=a[[k]]; Do[z=10*z0+j; If[Mod[z, Fibonacci[r]]==0, b=Append[b, z]], {j, 0, 9}]; k++]; AppendTo[t, nmax]; a=b; r++]; t
CROSSREFS
KEYWORD
nonn,base,fini,full
AUTHOR
Michel Lagneau, May 23 2014
STATUS
approved