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.

A140447 List of prime pairs of form p, p+22.

Original entry on oeis.org

7, 29, 19, 41, 31, 53, 37, 59, 61, 83, 67, 89, 79, 101, 109, 131, 127, 149, 151, 173, 157, 179, 211, 233, 229, 251, 241, 263, 271, 293, 331, 353, 337, 359, 367, 389, 379, 401, 397, 419, 409, 431, 421, 443, 439, 461, 457, 479, 487, 509, 499, 521, 541, 563, 547
Offset: 1

Views

Author

Juri-Stepan Gerasimov, Jun 26 2008

Keywords

Comments

The two primes p and p+22 are not necessarily adjacent.

Examples

			The pairs are (7, 29), (19, 41), (31, 53) etc.
		

Crossrefs

Programs

  • Mathematica
    {#, # + 22} & /@ Select[Prime@ Range@ 100, PrimeQ@ # && PrimeQ[# + 22] &] // Flatten (* Michael De Vlieger, May 23 2016 *)
  • Ruby
    require 'prime'
    ary = []
    Prime.each(487447).each{|i| ary += [i, i + 22] if (i + 22).prime?}
    p ary  # Seiichi Manyama, May 22 2016

Extensions

Typo in definition edited by D. S. McNeil, Dec 10 2009
Entries verified and extended by D. S. McNeil, Dec 10 2009