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.

A250492 (n^6)-th Fibonacci number.

Original entry on oeis.org

0, 1, 10610209857723
Offset: 0

Views

Author

Alois P. Heinz, Nov 24 2014

Keywords

Comments

The next term (a(3)) has 153 digits. - Harvey P. Dale, Jan 26 2025

Crossrefs

Column k=6 of A250486.
Cf. A000045.

Programs

  • Maple
    a:= n-> (<<0|1>, <1|1>>^(n^6))[1, 2]:
    seq(a(n), n=0..4);
  • Mathematica
    Table[Fibonacci[n^6],{n,0,3}] (* Harvey P. Dale, Jan 26 2025 *)

Formula

a(n) = A000045(n^6).