A250495 The n^n-th Fibonacci number.
1, 1, 3, 196418, 141693817714056513234709965875411919657707794958199867
Offset: 0
Keywords
Links
- Alois P. Heinz, Table of n, a(n) for n = 0..5
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 *)
Comments