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.

A176683 Numbers k such that k^2 +-11 are primes.

Original entry on oeis.org

90, 120, 210, 270, 300, 510, 690, 720, 780, 960, 1200, 2190, 4260, 4350, 4470, 4920, 4980, 5040, 5100, 5250, 5550, 5670, 5730, 5790, 6810, 8100, 8280, 8490, 8610, 9150, 9540, 9990, 10140, 10200, 10650, 11130, 11430, 12060, 12510, 12930, 13770, 13800
Offset: 1

Views

Author

Keywords

Examples

			90 is in the sequence, because 90^2 - 11 = 8089 and 90^2 + 11 = 8111 are primes.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[8! ],PrimeQ[ #^2-11]&&PrimeQ[ #^2+11]&]
    Select[Range[14000],AllTrue[#^2+{11,-11},PrimeQ]&] (* Harvey P. Dale, Aug 03 2024 *)