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.

A023295 Primes that remain prime through 3 iterations of function f(x) = 8x + 9.

Original entry on oeis.org

23, 643, 2293, 5023, 5653, 9643, 10723, 11503, 12823, 15493, 18353, 18773, 28403, 32003, 32183, 41953, 42853, 45233, 49853, 50873, 52103, 53113, 54623, 56123, 76003, 80803, 84443, 86783, 88813, 89413, 92033, 95213, 96823, 97943, 100613, 115793
Offset: 1

Views

Author

Keywords

Comments

Primes p such that 8*p+9, 64*p+81 and 512*p+657 are also primes. - Vincenzo Librandi, Aug 04 2010

Crossrefs

Subsequence of A023232, A023264, and of A153762.

Programs

  • Magma
    [n: n in [1..450000] | IsPrime(n) and IsPrime(8*n+9) and IsPrime(64*n+81) and IsPrime(512*n+657)]; // Vincenzo Librandi, Aug 04 2010