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.

A090836 Numbers n such that 6*n+5, 6*n+11, 6*n+17, 6*n+23 are consecutive primes.

Original entry on oeis.org

41, 896, 1051, 2106, 2241, 2456, 2631, 2911, 3886, 4361, 9346, 10366, 12586, 13131, 13796, 14071, 14896, 15736, 15876, 17451, 19291, 20091, 20166
Offset: 1

Views

Author

Pierre CAMI, Dec 09 2003

Keywords

Examples

			6*41+5=251, 6*41+11=257, 6*41+17=263, 6*41+23=269; 251,257,263,269 are consecutive primes.
		

Crossrefs

Programs

  • Mathematica
    Select[(#-5)/6&/@Transpose[Select[Partition[Prime[Range[11500]],4,1], Union[Differences[#]]=={6}&]][[1]],IntegerQ] (* Harvey P. Dale, Nov 18 2013 *)