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”).

A079657
Fibonacci numbers using only the curved digits 0, 3, 6, 8 and 9.
0
OFFSET
1,2
COMMENTS
Next term, if it exists, is > Fibonacci(6000). - Emeric Deutsch, Mar 12 2005
Next term, if it exists, is > Fibonacci(2425000). - Lars Blomberg, May 09 2011
MAPLE
with(combinat): p:=proc(n) if convert(convert(fibonacci(n), base, 10), set) subset {0, 3, 6, 8, 9} then fibonacci(n) else fi end: seq(p(n), n=0..6000); # Emeric Deutsch, Mar 12 2005
CROSSREFS
Cf. A072960.
Sequence in context: A347920 A367273 A070901 * A136309 A266671 A069703
KEYWORD
base,more,nonn
AUTHOR
Shyam Sunder Gupta, Jan 23 2003
EXTENSIONS
Offset changed to 1 by Klaus Brockhaus, May 09 2011
STATUS
approved