OFFSET
0,1
COMMENTS
There are no more terms <= 100000.
This is the complement of A263580.
EXAMPLE
66 is in the sequence because Fibonacci(66) = 27777890035288, which has no digits in common with 66.
MATHEMATICA
Select[Range[0, 80], IntersectingQ[IntegerDigits@ #, IntegerDigits@ Fibonacci@ #] == False &] (* Michael De Vlieger, Oct 22 2015 *)
PROG
(PARI) s=[]; for(n=0, 1000, if(setintersect(vecsort(digits(n), , 8), vecsort(digits(fibonacci(n)), , 8))==[], s=concat(s, n))); s
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Colin Barker, Oct 22 2015
STATUS
approved