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.

A138632 Nonnegative integers k such that 17*k+9 is prime.

Original entry on oeis.org

2, 10, 16, 20, 22, 34, 44, 50, 62, 64, 76, 86, 94, 100, 104, 106, 110, 112, 122, 134, 140, 142, 152, 160, 164, 176, 184, 194, 206, 212, 226, 230, 236, 244, 250, 254, 262, 286, 292, 310, 314, 316, 320, 322, 332, 344, 362, 364, 370, 374, 380, 386, 392, 406, 412
Offset: 1

Views

Author

Keywords

Examples

			17*2+9=43, 17*10+9=179, 17*16+9=281, 17*20+9=349, 17*22+9=349, ...
		

Crossrefs

Cf. A138631.

Programs

  • Mathematica
    a={};Do[x=17*n+9;If[PrimeQ[x],AppendTo[a,n]],{n,10^2}];a
  • PARI
    is(n) = isprime(17*n+9) \\ Rémy Sigrist, Oct 10 2019

Extensions

More terms from Rémy Sigrist, Oct 10 2019