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.
%I A091568 #15 May 15 2016 08:51:11 %S A091568 5,19,41,109,271,811,929,2161,3659,4421,4969,9311,10099,16001,17029, %T A091568 19181,22051,32579,38611,57839,72091,93941,109229,128521,143261, %U A091568 157211,166871,175141,176819,201151,208391,228961,236681,240589,358201,367841 %N A091568 Primes of the form p^2 - p - 1, where p is prime. %H A091568 Vincenzo Librandi, <a href="/A091568/b091568.txt">Table of n, a(n) for n = 1..5000</a> %t A091568 lst={};Do[p=Prime[n];p=p^2-p-1;If[PrimeQ[p],AppendTo[lst,p]],{n,3*5!}];lst (* _Vladimir Joseph Stephan Orlovsky_, Jan 27 2009 *) %t A091568 Select[#^2-#-1&/@Prime[Range[200]],PrimeQ] (* _Harvey P. Dale_, May 15 2016 *) %o A091568 (PARI) isA091568(n)={local(i);i=floor((1/2)+sqrt(n+(5/4)));isprime(i) && n==i^2-i-1 && isprime(n)} \\ _Michael B. Porter_, May 12 2010 %Y A091568 Cf. A091567 (p such that p^2 - p - 1 is prime). %K A091568 nonn %O A091568 1,1 %A A091568 _T. D. Noe_, Jan 21 2004