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.

A383321 a(n) = Fibonacci(A383320(n)).

Original entry on oeis.org

0, 1, 5, 433494437, 2, 3, 34, 701408733, 24157817, 1, 3524578, 74938658661142424746936931013871484819301255773627024651689719443505027723135990224027850523592585, 81055900096023504197206408605, 21, 13
Offset: 1

Views

Author

Dominic McCarty, Apr 23 2025

Keywords

Crossrefs

Programs

  • Python
    from sympy import fibonacci
    from itertools import count
    a, b, sa, sb = [0,1,5,43], [0,1,5,433494437], "01543", "015433494437"
    for _ in range(10):
        a.append(next(n for k in count(1) if not (n := int(sb[len(sa):len(sa)+k])) in a and not (len(sb) > len(sa) + k and sb[len(sa) + k] == "0")))
        b.append(fibonacci(a[-1]))
        sa += str(a[-1]); sb += str(b[-1])
    print(b)