OFFSET
0,3
COMMENTS
This is the complement of A263579.
LINKS
Colin Barker, Table of n, a(n) for n = 0..1000
EXAMPLE
17 is in the sequence because Fibonacci(17) = 1597, which has two digits in common with 17.
18 is in the sequence because Fibonacci(18) = 2584, which has one digit in common with 18.
MATHEMATICA
Select[Range[0, 80], IntersectingQ[IntegerDigits@ #, IntegerDigits@ Fibonacci@ #] &] (* Michael De Vlieger, Oct 22 2015 *)
PROG
(PARI) s=[0]; for(n=1, 100, 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