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.

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

Original entry on oeis.org

4099, 8117, 9587, 36899, 73061, 75527, 214771, 240197, 350219, 385709, 453199, 483649, 501029, 556607, 575119, 616991, 701497, 724597, 880067, 961069, 1230311, 1342501, 1376197, 1558811, 1566847, 1613707, 2450779, 2483711, 2536379, 2598157
Offset: 1

Views

Author

Keywords

Comments

Primes p such that 9*p+8, 81*p+80, 729*p+728, 6561*p+6560 and 59049*p+59048 are also primes. - Vincenzo Librandi, Aug 05 2010

Crossrefs

Subsequence of A023235, A023267, A023298, and A023326.

Programs

  • Magma
    [n: n in [1..19000000] | IsPrime(n) and IsPrime(9*n+8) and IsPrime(81*n+80) and IsPrime(729*n+728) and IsPrime(6561*n+6560) and IsPrime(59049*n+59048)] // Vincenzo Librandi, Aug 05 2010