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.

A288246 Numbers k such that 8*k^3 + 81 is prime.

Original entry on oeis.org

1, 4, 8, 10, 11, 13, 20, 26, 29, 34, 35, 43, 46, 50, 53, 56, 68, 70, 71, 85, 86, 94, 95, 98, 125, 130, 131, 139, 149, 154, 160, 161, 163, 169, 170, 178, 184, 194, 196, 199, 208, 215, 229, 239, 259, 266, 269, 271, 280, 283, 286, 290, 298, 305, 313
Offset: 1

Views

Author

Vincenzo Librandi, Jun 07 2017

Keywords

Examples

			a(1) = 1 because 8*1 + 81 = 89 is prime.
a(2) = 4 because 8*4^3 + 81 = 593 is prime.
		

Crossrefs

Cf. A155722: Numbers k such that 2*k + 9 is prime.
Cf. A002971: Numbers k such that 4*k^2 + 25 is prime.

Programs

  • Magma
    [n: n in [0..500] |IsPrime(8*n^3+81)];
  • Mathematica
    Select[Range[500], PrimeQ[8 #^3 + 81] &]
Showing 1-1 of 1 results.