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.

A108726 Numbers n such that 11*n + 29 is prime.

Original entry on oeis.org

0, 4, 10, 18, 22, 24, 28, 30, 42, 48, 52, 64, 72, 78, 84, 88, 90, 94, 100, 102, 108, 114, 118, 130, 132, 144, 148, 154, 160, 162, 168, 178, 184, 192, 198, 202, 204, 210, 214, 238, 244, 252, 270, 280, 298, 300, 304, 312, 318, 322, 324, 328, 330, 340, 354, 358
Offset: 1

Views

Author

Parthasarathy Nambi, Jun 21 2005

Keywords

Comments

Two less than the associated entry in A102711.

Examples

			If n=0, then 11*n + 29 = 29 (prime).
If n=48, then 11*n + 29 = 557 (prime).
		

Crossrefs

Cf. A108233.

Programs

  • Maple
    a:=proc(n) if isprime(11*n+29)=true then n else fi end: seq(a(n),n=0..400); # Emeric Deutsch, Jun 26 2005
  • Mathematica
    Select[Range[0,400],PrimeQ[11#+29]&] (* Harvey P. Dale, Jan 26 2013 *)
  • PARI
    is(n)=isprime(11*n+29) \\ Charles R Greathouse IV, Jun 12 2017

Extensions

More terms from Emeric Deutsch, Jun 26 2005
Showing 1-1 of 1 results.