D. Bowman, <a href="https://web.archive.org/web/2024*/https://www
D. Bowman, <a href="https://web.archive.org/web/2024*/https://www
D. Bowman, <a href="httphttps://www.fq.math.ca/26-1.html">A new generalization of Davison's theorem</a>, Fib. Quart. Volume 26 (1988), 40-45
reviewed
approved
proposed
reviewed
editing
proposed
P. G. Anderson, T. C. Brown, and P. J.-S. Shiue, <a href="http://people.math.sfu.ca/~vjungic/tbrown/tom-28.pdf">A simple proof of a remarkable continued fraction identity</a>, Proc. Amer. Math. Soc. 123 (1995), 2005-2009.
approved
editing
reviewed
approved
proposed
reviewed
editing
proposed
a[ -1]:=1: a[0]:=3: a[1]:=3: for n from 2 to 13 do a[n]:=a[n-1]*a[n-2] od: seq(a[n], n=-1..10); # Zerinvary Lajos, Mar 19 2009
3^Fibonacci[Range[0, 13]] (* or *) t={1, 3}; Do[AppendTo[t, t[[-1]]*t[[-2]]], {n, 12}]; t (* __Vladimir Joseph Stephan Orlovsky_, Jan 21 2012 *)
(Magma) [3^Fibonacci(n): n in [0..12]]; // G. C. Greubel, Jul 29 2024
(SageMath) [3^fibonacci(n) for n in range(13)] # G. C. Greubel, Jul 29 2024
approved
editing