login
A263579
Numbers n such that n and Fibonacci(n) have no common digits.
1
2, 3, 4, 6, 7, 8, 9, 10, 11, 14, 16, 20, 22, 27, 34, 66
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
Sequence in context: A039214 A032866 A014155 * A166527 A380076 A039223
KEYWORD
nonn,base
AUTHOR
Colin Barker, Oct 22 2015
STATUS
approved