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.

A145234 a(n) = Fibonacci(7^n).

This page as a plain text file.
%I A145234 #35 Oct 02 2024 07:53:51
%S A145234 1,13,7778742049,
%T A145234 215414832505658809004682396169711233230800418578767753330908886771798637
%N A145234 a(n) = Fibonacci(7^n).
%H A145234 Seiichi Manyama, <a href="/A145234/b145234.txt">Table of n, a(n) for n = 0..4</a>
%F A145234 a(n) = (G^(7^n) - (1 - G)^(7^n))/sqrt(5) where G = (1 + sqrt(5))/2.
%F A145234 a(n) = (2/sqrt(5))*cosh(7^n*arccosh(sqrt(5)/2)).
%F A145234 a(n+1) = 125*a(n)^7 - 175*a(n)^5 + 70*a(n)^3 - 7*a(n) with a(0) = 1. - _Peter Bala_, Nov 25 2022
%p A145234 A145234 := proc(n) combinat[fibonacci](7^n) ; end proc:
%p A145234 seq(A145234(n),n=1..3) ; # _R. J. Mathar_, Apr 01 2011
%t A145234 G = (1 + Sqrt[5])/2; Table[Expand[(G^(7^n) - (1 - G)^(7^n))/Sqrt[5]], {n, 1, 6}]
%t A145234 (* Second program: *)
%t A145234 Table[Round[N[(2/Sqrt[5])*Cosh[7^n*ArcCosh[Sqrt[5]/2]], 1000]], {n, 1, 4}]
%o A145234 (Magma) [Fibonacci(7^n): n in [0..5]]; // _Vincenzo Librandi_, Apr 02 2011
%Y A145234 Cf. A000045.
%Y A145234 Cf. (k^n)-th Fibonacci number: A058635 (k=2), A045529 (k=3), A145231 (k=4), A145232 (k=5), A145233 (k=6), this sequence (k=7), A250487 (k=8), A250488 (k=9), A250489 (k=10).
%K A145234 nonn,easy
%O A145234 0,2
%A A145234 _Artur Jasinski_, Oct 05 2008