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.

A121606 Indices n such that A018910[n] = (Fibonacci[n+3] + 2) are primes.

This page as a plain text file.
%I A121606 #5 Jul 01 2019 10:29:11
%S A121606 1,2,5,11,19,37,73,85,155,193,227,233,257,785,797,1277,2371,2771,4213,
%T A121606 9107
%N A121606 Indices n such that A018910[n] = (Fibonacci[n+3] + 2) are primes.
%C A121606 A018910[n] is Pisot sequence L(4,5). Prime Pisot L(4,5) numbers are A018910[a(n)] = Fibonacci[a(n) + 3 ] + 2 = {5,7,23,379,17713,102334157,...} = A121605[n]. Most listed a(n) are prime except a(8),a(9),a(14),a(18).
%t A121606 Do[f=Fibonacci[n+3]+2;If[PrimeQ[f],Print[n]],{n,1,3000}]
%t A121606 Select[Range[10000],PrimeQ[Fibonacci[#+3]+2]&] (* _Harvey P. Dale_, Jul 01 2019 *)
%Y A121606 Cf. A121605, A018910, A048584.
%K A121606 nonn
%O A121606 1,2
%A A121606 _Alexander Adamchuk_, Aug 09 2006
%E A121606 More terms from _Harvey P. Dale_, Jul 01 2019