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.

A075289 Interprimes which are of the form s*prime, s=14.

Original entry on oeis.org

42, 154, 266, 574, 994, 1106, 2674, 3206, 3514, 4382, 5306, 5446, 6538, 6706, 8666, 8834, 9814, 9926, 10654, 11494, 13174, 13594, 14266, 14434, 14546, 15274, 15806, 17486, 17906, 18214, 18242, 21994, 22358, 22694, 24094, 25858, 27314, 28406
Offset: 1

Views

Author

Zak Seidov, Sep 12 2002

Keywords

Comments

Interprimes of the form s*prime are in A075277-A075296 ( s = 2 - 21 ). Case s=1 is impossible.

Examples

			266 is an interprime and 266/14 = 19 is prime.
		

Crossrefs

Programs

  • Mathematica
    s=14; Select[Table[(Prime[n+1]+Prime[n])/2, {n, 2, 4000}], PrimeQ[ #/s]&]
    Select[Mean/@Partition[Prime[Range[2,3100]],2,1],PrimeQ[#/14]&] (* Harvey P. Dale, Feb 24 2015 *)