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.

A163159 Fibonacci numbers F such that F^2-2 is prime.

This page as a plain text file.
%I A163159 #7 Nov 21 2013 12:49:40
%S A163159 2,3,5,13,21,55,89,233,987,1597,5702887,1836311903,99194853094755497,
%T A163159 26925748508234281076009,184551825793033096366333,
%U A163159 468340976726457153752543329995929,30010821454963453907530667147829489881,1188518561323126046432205871807859915657177
%N A163159 Fibonacci numbers F such that F^2-2 is prime.
%C A163159 In condensed representation: The A000045(i) at i = 3, 4, 5, 7, 8, 10, 11, 13, 16, 17, 34, 46,... [_R. J. Mathar_, Jul 25 2009]
%F A163159 {A000045(i): A008865(A000045(i)) in A000040}. [_R. J. Mathar_, Jul 25 2009]
%e A163159 2^2-2=2. 3^2-2=7. 5^2-2=23.
%t A163159 f[n_]:=Fibonacci[n]; f2[n_]:=f[n]^2-2; lst={};Do[If[PrimeQ[f2[n]],AppendTo[lst, f[n]]],{n,6!}];lst
%t A163159 Select[Fibonacci[Range[400]],PrimeQ[#^2-2]&] (* _Harvey P. Dale_, Oct 21 2011 *)
%Y A163159 Cf. A000045, A028871, A163158
%K A163159 nonn
%O A163159 1,1
%A A163159 _Vladimir Joseph Stephan Orlovsky_, Jul 21 2009
%E A163159 More terms from _Harvey P. Dale_, Oct 21 2011