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.

A250493 (n^7)-th Fibonacci number.

Original entry on oeis.org

0, 1, 251728825683549488150424261
Offset: 0

Views

Author

Alois P. Heinz, Nov 24 2014

Keywords

Crossrefs

Column k=7 of A250486.
Cf. A000045.

Programs

  • Magma
    [Fibonacci(n^7): n in [0..4]]; // Vincenzo Librandi, Nov 24 2014
  • Maple
    a:= n-> (<<0|1>, <1|1>>^(n^7))[1, 2]:
    seq(a(n), n=0..3);
  • Mathematica
    Table[Fibonacci[n^7], {n, 0, 5}] (* Vincenzo Librandi, Nov 24 2014 *)

Formula

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