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-4 of 4 results.

A124127 Numbers k such that 17k + 1 is prime.

Original entry on oeis.org

6, 8, 14, 18, 24, 26, 36, 38, 54, 56, 60, 66, 74, 78, 80, 84, 90, 98, 110, 116, 126, 138, 140, 150, 158, 164, 168, 180, 186, 194, 204, 210, 216, 228, 230, 236, 248, 260, 266, 270, 290, 294, 300, 308, 318, 320, 344, 356, 360, 368, 374, 378, 384, 386, 396, 404
Offset: 1

Views

Author

Parthasarathy Nambi, Nov 29 2006

Keywords

Examples

			If k=116 then 17*k + 1 = 1973 (prime).
		

Crossrefs

Cf. A024905, A129484 (resulting primes).

Programs

A124198 Numbers k such that 21*k + 1 is prime.

Original entry on oeis.org

2, 6, 10, 16, 18, 20, 22, 26, 30, 32, 36, 42, 46, 48, 50, 52, 62, 68, 70, 76, 82, 92, 96, 102, 108, 110, 116, 120, 126, 128, 130, 136, 146, 148, 158, 160, 168, 170, 172, 176, 178, 182, 186, 198, 200, 202, 206, 220, 222, 228, 230, 236, 238, 246, 248, 258, 262, 278
Offset: 1

Views

Author

Parthasarathy Nambi, Dec 06 2006

Keywords

Examples

			If k=148 then 21*k + 1 = 3109 (prime).
		

Crossrefs

Programs

A111249 Numbers n such that 7*n + 8 is prime.

Original entry on oeis.org

3, 5, 9, 15, 17, 27, 29, 33, 39, 47, 53, 59, 63, 65, 69, 77, 87, 89, 93, 95, 99, 105, 107, 117, 125, 129, 135, 137, 143, 149, 155, 165, 183, 185, 195, 203, 209, 213, 225, 227, 237, 243, 245, 267, 275, 285, 287, 297, 303, 305, 315, 323, 327, 329, 333, 339, 345
Offset: 1

Views

Author

Parthasarathy Nambi, Oct 31 2005

Keywords

Comments

One less than the associated entry in A024905.

Examples

			If n=125 then 7*n + 8 = 883 (prime).
		

Crossrefs

Programs

A368203 Least k such that 7*n*k+1 is a prime.

Original entry on oeis.org

4, 2, 2, 1, 2, 1, 4, 2, 2, 1, 6, 4, 6, 2, 2, 1, 2, 1, 12, 2, 6, 3, 6, 2, 4, 3, 2, 1, 12, 1, 6, 2, 2, 1, 2, 3, 10, 6, 2, 1, 6, 3, 10, 2, 2, 3, 2, 1, 4, 2, 4, 3, 2, 1, 6, 8, 4, 6, 2, 1, 4, 3, 2, 1, 2, 1, 4, 2, 2, 1, 14, 2, 6, 5, 2, 3, 12, 1, 4, 5, 4, 3, 2, 6
Offset: 1

Views

Author

Robert Price, Dec 16 2023

Keywords

Crossrefs

A070851 lists the corresponding primes.

Programs

  • Mathematica
    A368203 = {};
    Do[k=1; While[!PrimeQ[7 n k+1], k++]; AppendTo[A368203,k], {n,84}];
    A368203
  • PARI
    a(n) = my(k=1); while (!isprime(7*n*k+1), k++); k; \\ Michel Marcus, Dec 16 2023
Showing 1-4 of 4 results.