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.

A135724 Fibonacci numbers whose indices are prime Fibonacci numbers: a(n) = Fibonacci(A001605(n)).

Original entry on oeis.org

1, 2, 5, 233, 1779979416004714189, 2211236406303914545699412969744873993387956988653
Offset: 1

Views

Author

Artur Jasinski, Nov 26 2007

Keywords

Comments

The only known prime numbers in this sequence are 2, 5 and 233.
The next term (a(6)) has 334 digits. - Harvey P. Dale, Apr 28 2023

Crossrefs

Programs

  • Mathematica
    a = {}; b = {}; Do[If[PrimeQ[c = Fibonacci[n]], w = Fibonacci[Fibonacci[n]]; AppendTo[a, w]; AppendTo[b, n]], {n, 1, 31}]; a
    Fibonacci[#]&/@Select[Fibonacci[Range[20]],PrimeQ] (* Harvey P. Dale, Apr 28 2023 *)

Extensions

Corrected by Harvey P. Dale, Apr 28 2023