login

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

A276464
Fibbinary Fibonacci numbers.
0
0, 1, 2, 5, 8, 21, 34, 144, 4181, 75025
OFFSET
1,3
COMMENTS
Intersection of A000045 and A003714.
Next term > 10^10000, if it exists. - Joerg Arndt, Sep 05 2016
Conjecture: 75025 is the last term of this sequence. - Altug Alkan, Jul 07 2020
PROG
(PARI) { my(f0=0, f1=1, t); while ( f0 < 10^10000, if( bitand(f0, f0>>1)==0, print1(f0, ", ") ); t=f0; f0=f1; f1=t+f0; ); } \\ Joerg Arndt, Sep 05 2016
CROSSREFS
Sequence in context: A340399 A117647 A121568 * A001005 A009735 A177245
KEYWORD
nonn,more
AUTHOR
Altug Alkan, Sep 04 2016
STATUS
approved