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.

A156274 List of prime pairs of the form (p, p+6).

Original entry on oeis.org

5, 11, 7, 13, 11, 17, 13, 19, 17, 23, 23, 29, 31, 37, 37, 43, 41, 47, 47, 53, 53, 59, 61, 67, 67, 73, 73, 79, 83, 89, 97, 103, 101, 107, 103, 109, 107, 113, 131, 137, 151, 157, 157, 163, 167, 173, 173, 179, 191, 197, 193, 199, 223, 229, 227, 233, 233, 239, 251, 257
Offset: 1

Views

Author

Vincenzo Librandi, Feb 07 2009

Keywords

Comments

A023201 and A046117 interleaved. [From R. J. Mathar, Feb 19 2009]

Examples

			For p=5, p+6=11, (5,11); p=7, p+6=13, (7,13); p=11, p+6=17, (11,17)
		

Programs

  • Mathematica
    Flatten[Select[{#, # + 6}&/@Prime[Range[100]], PrimeQ[Last[#]]&]] (* Vincenzo Librandi, Apr 06 2013 *)