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.

A008973 Fibonacci number F(n) to power F(n).

This page as a plain text file.
%I A008973 #23 Oct 22 2024 20:52:04
%S A008973 1,1,1,4,27,3125,16777216,302875106592253,
%T A008973 5842587018385982521381124421,
%U A008973 11756638905368616011414050501310355554617941909569536,524744532468751923546122657597368049278513737089035272057324643668607677682302892208099365234375
%N A008973 Fibonacci number F(n) to power F(n).
%H A008973 Vincenzo Librandi, <a href="/A008973/b008973.txt">Table of n, a(n) for n = 0..14</a>
%F A008973 a(n) = A000045(n)^A000045(n).
%F A008973 a(n) = A000312(A000045(n)).
%p A008973 with(combinat):
%p A008973 [ seq(fibonacci(n)^fibonacci(n), n=0..15) ];
%t A008973 Table[f=Fibonacci[n];f^f,{n,0,9}] (* _Vladimir Joseph Stephan Orlovsky_, Jul 22 2008 *)
%o A008973 (PARI) a(n)=my(f=fibonacci(n)); f^f \\ _Charles R Greathouse IV_, Oct 03 2016
%Y A008973 Cf. A000045, A000312, A250495.
%K A008973 nonn
%O A008973 0,4
%A A008973 _N. J. A. Sloane_