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.

A250495 The n^n-th Fibonacci number.

Original entry on oeis.org

1, 1, 3, 196418, 141693817714056513234709965875411919657707794958199867
Offset: 0

Views

Author

Alois P. Heinz, Nov 24 2014

Keywords

Comments

The next term (a(5)) has 653 digits. - Harvey P. Dale, Nov 29 2017

Crossrefs

Programs

  • Maple
    a:= n-> (<<0|1>, <1|1>>^(n^n))[1, 2]:
    seq(a(n), n=0..5);
  • Mathematica
    Table[Fibonacci[n^n],{n,0, 5}] (* Harvey P. Dale, Nov 29 2017 *)

Formula

a(n) = [0, 1; 1, 1]^(n^n)[1,2].
a(n) = A000045(n^n) = A250486(n,n).
a(n) = A000045(A000312(n)).