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.

A210343 a(n) = Fibonacci(n+1)^n.

This page as a plain text file.
%I A210343 #20 Sep 08 2022 08:46:01
%S A210343 1,1,4,27,625,32768,4826809,1801088541,1785793904896,4605366583984375,
%T A210343 31181719929966183601,552061438912436417593344,
%U A210343 25601832525455335435322705761,3107689015140868348741078056241817,987683253336131809511244100000000000000
%N A210343 a(n) = Fibonacci(n+1)^n.
%H A210343 Vincenzo Librandi, <a href="/A210343/b210343.txt">Table of n, a(n) for n = 0..70</a>
%p A210343 a:= n-> (<<1|1>, <1|0>>^n)[1,1]^n:
%p A210343 seq(a(n), n=0..15);  # _Alois P. Heinz_, Dec 05 2015
%t A210343 Table[Fibonacci[n+1]^n,{n,0,100}]
%o A210343 (Maxima) makelist(fib(n+1)^n,n,0,14);
%o A210343 (Magma) [Fibonacci(n+1)^n: n in [0..14]]; // _Bruno Berselli_, Mar 28 2012
%Y A210343 Cf. A100399, A067966, A210341, A210342.
%K A210343 nonn,easy
%O A210343 0,3
%A A210343 _Emanuele Munarini_, Mar 20 2012