login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A084962 Iterations of the Fibonacci sequence starting at 6. 3
6, 8, 21, 10946 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
The next term, a(4) = 1.695... * 10^2287, has 2288 digits and is too large to display.
This sequence is of interest because the sequences with this recurrence and a(0) in {0, 1, 2, 3, 4} all converge to 1 and the sequence with a(0) = 5 is constant.
LINKS
FORMULA
a(0) = 6, a(n) = Fibonacci(a(n-1)) for n>0.
EXAMPLE
a(3) = Fibonacci(a(2)) = Fibonacci(21) = 10946.
MAPLE
a:= proc(n) option remember; `if`(n=0, 6,
(<<0|1>, <1|1>>^a(n-1))[1, 2])
end:
seq(a(n), n=0..4); # Alois P. Heinz, May 09 2020
MATHEMATICA
fibonaccieth6[m_] := Module[{ex = 6}, Do[ex = Fibonacci[ex], {m}]; ex] Table[fibonaccieth6[m], {m, 0, 4}]
NestList[Fibonacci[#] &, 6, 4] (* Alonso del Arte, Apr 30 2020 *)
PROG
(Scala) val fiboLimited: LazyList[Int] = 0 #:: 1 #:: fiboLimited.zip(fiboLimited.tail).map { n => n._1 + n._2 }
def fibonaccieth(start: Int): LazyList[Int] = LazyList.iterate(start)(fiboLimited)
fibonaccieth(6).takeWhile(_ > 0).toList // Alonso del Arte, Apr 30 2020
CROSSREFS
Cf. A000045, A007097, A010716 (starting with 5), A084963 (starting with 7).
Sequence in context: A243932 A242504 A267023 * A365649 A296354 A343759
KEYWORD
nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 04:35 EDT 2024. Contains 371782 sequences. (Running on oeis4.)