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.

A092761 Primes of the form prime(n)*prime(n+1) - 4.

Original entry on oeis.org

2, 11, 31, 73, 139, 433, 1759, 2017, 5179, 6553, 8629, 10399, 14347, 16633, 20707, 39199, 53353, 131749, 159193, 186619, 216217, 250993, 471949, 509767, 608347, 736159, 777919, 938953, 1022113, 1065019, 1238749, 1327099, 1476217, 1640953
Offset: 1

Views

Author

Giovanni Teofilatto, Apr 13 2004

Keywords

Programs

  • Mathematica
    f[n_]:=Prime[n]*Prime[n+1]-4; lst={}; Do[If[PrimeQ[f[n]],AppendTo[lst,f[n]]],{n,6!}]; lst (* Vladimir Joseph Stephan Orlovsky, Feb 10 2010 *)
    Select[Times@@@Partition[Prime[Range[250]],2,1]-4,PrimeQ] (* Harvey P. Dale, Oct 12 2015 *)

Extensions

Corrected and extended by Pab Ter (pabrlos(AT)yahoo.com), May 24 2004