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.

A250490 (n^4)-th Fibonacci number.

Original entry on oeis.org

0, 1, 987, 37889062373143906, 141693817714056513234709965875411919657707794958199867
Offset: 0

Views

Author

Alois P. Heinz, Nov 24 2014

Keywords

Crossrefs

Column k = 4 of A250486.
Cf. A000045.

Programs

  • Maple
    a:= n-> (<<0|1>, <1|1>>^(n^4))[1, 2]:
    seq(a(n), n=0..5);
  • Mathematica
    Fibonacci[Range[0, 5]^4] (* Alonso del Arte, Aug 22 2017 *)
  • PARI
    a(n) = fibonacci(n^4) \\ Felix Fröhlich, Aug 22 2017

Formula

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