login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo

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 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A263580 Numbers n such that n and Fibonacci(n) have at least one common digit. 2
0, 1, 5, 12, 13, 15, 17, 18, 19, 21, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
This is the complement of A263579.
LINKS
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
Sequence in context: A268035 A223255 A076537 * A110134 A014156 A367355
KEYWORD
nonn,base
AUTHOR
Colin Barker, Oct 22 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified December 7 18:28 EST 2023. Contains 367660 sequences. (Running on oeis4.)