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.

A228244 Primes of the form k^2 + 17.

Original entry on oeis.org

17, 53, 593, 3617, 4373, 6101, 8117, 11681, 20753, 26261, 30293, 34613, 54773, 63521, 86453, 90017, 101141, 108917, 112913, 116981, 138401, 156833, 176417, 191861, 207953, 213461, 219041, 248021, 278801, 352853, 404513, 419921, 427733, 451601, 518417, 562517
Offset: 1

Views

Author

Michel Marcus, Aug 18 2013

Keywords

Examples

			17 = 0^2 + 17 is prime.
53 = 6^2 + 17 is prime.
		

Crossrefs

Programs

  • Magma
    [m: n in [0..900] | IsPrime(m) where m is n^2+17]; // Bruno Berselli, Aug 18 2013
  • Mathematica
    Select[Table[n^2 + 17, {n, 0, 900}], PrimeQ] (* Bruno Berselli, Aug 18 2013 *)
  • PARI
    isp(n) = isprime(n) && issquare(n-17);
    

Formula

a(n) = A241847(A264790(n)). - Elmo R. Oliveira, Apr 21 2025
Showing 1-1 of 1 results.