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.

A093088 "Fibonacci-like in digits": start with a(1)=1, a(2)=4; repeatedly adjoin digits of sum of previous two terms.

Original entry on oeis.org

1, 4, 5, 9, 1, 4, 1, 0, 5, 5, 1, 5, 1, 0, 6, 6, 6, 1, 6, 1, 2, 1, 2, 7, 7, 7, 3, 3, 3, 9, 1, 4, 1, 4, 1, 0, 6, 6, 1, 2, 1, 0, 5, 5, 5, 5, 1, 6, 1, 2, 7, 3, 3, 1, 5, 1, 0, 1, 0, 1, 0, 6, 7, 7, 3, 9, 1, 0, 6, 4, 6, 6, 1, 1, 1, 1, 1, 6, 1, 3, 1, 4, 1, 0, 1, 2, 1, 0, 1, 6, 1, 0, 1, 0, 1, 2, 7, 2, 2, 2, 2, 7, 7, 4, 4
Offset: 1

Views

Author

Bodo Zinser, Mar 20 2004

Keywords

Crossrefs

Programs

  • Mathematica
    Fold[Join[#, IntegerDigits[Total[#[[#2;; #2+1]]]]] &, {1, 4}, Range[100]] (* Paolo Xausa, Aug 18 2025 *)