cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A077372 Fibonacci numbers whose external digits form a Fibonacci number. Or Fibonacci numbers whose MSD and LSD form a Fibonacci number.

Original entry on oeis.org

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 121393, 1836311903, 2504730781961, 10610209857723, 10284720757613717413913, 184551825793033096366333, 59425114757512643212875125, 155576970220531065681649693
Offset: 1

Views

Author

Amarnath Murthy, Nov 06 2002

Keywords

Comments

Sequence can be easily generated up to >10000 terms with the appended Sage script. - Manfred Scheucher, Jun 02 2015

Crossrefs

Programs

  • Sage
    F=[fibonacci(i) for i in [0..200]]
    [x for x in F if x<10 or (x>10 and (10*x.digits()[-1]+x.digits()[0]) in F)]
    # Tom Edgar, Jun 03 2015

Extensions

More terms from Lior Manor, Nov 06 2002

A077373 Fibonacci numbers whose external digits as well as internal digits form a Fibonacci number.

Original entry on oeis.org

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89
Offset: 1

Views

Author

Amarnath Murthy, Nov 06 2002

Keywords

Comments

Conjecture: sequence is finite. Is there any term > 89 in this sequence?

Crossrefs

Intersection of A077371 and A077372.
Showing 1-2 of 2 results.