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.

A175283 Numbers k with the property that k and k^2 + 3k+9 are primes.

Original entry on oeis.org

2, 7, 11, 17, 23, 29, 31, 37, 43, 73, 101, 107, 127, 163, 179, 197, 239, 277, 281, 317, 331, 359, 367, 421, 457, 463, 487, 541, 569, 613, 617, 619, 661, 709, 739, 773, 787, 809, 823, 877, 941, 947, 953, 991, 1019, 1031, 1033, 1039, 1051, 1087, 1163, 1187
Offset: 1

Views

Author

Zak Seidov, Mar 21 2010

Keywords

Comments

Or, primes in A175282.

Crossrefs

Programs

  • Magma
    [ n: n in [0..1250] | IsPrime(n) and IsPrime(n^2+3*n+9)] // Vincenzo Librandi, Jan 30 2011
  • Mathematica
    Select[Prime[Range[400]],PrimeQ[ #^2+3*#+9]&]