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.

Showing 1-1 of 1 results.

A138645 Primes p such that 7*p+2 is composite.

Original entry on oeis.org

2, 7, 13, 17, 19, 29, 31, 37, 41, 43, 59, 61, 67, 73, 79, 83, 89, 97, 103, 109, 113, 127, 137, 139, 149, 151, 157, 163, 179, 181, 191, 193, 199, 211, 223, 227, 229, 233, 239, 241, 263, 269, 271, 277, 281, 283, 307, 313, 331, 337, 347, 349, 359, 367, 373, 379
Offset: 1

Views

Author

Keywords

Examples

			7*2+2=16, 7*7+2=51, 7*13+2=93,...
		

Crossrefs

Cf. A153351.

Programs

  • Mathematica
    a={};Do[p=Prime[n];If[ !PrimeQ[7*p+2],AppendTo[a,p]],{n,8^2}];a
    Select[Prime[Range[200]],!PrimeQ[7#+2]&] (* Harvey P. Dale, Aug 05 2011 *)

Extensions

More terms from Vincenzo Librandi, Apr 01 2010
Showing 1-1 of 1 results.