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.

A338175 Primes p such that (p^2+6)/5 is prime.

Original entry on oeis.org

2, 3, 7, 17, 23, 47, 53, 157, 173, 193, 233, 347, 353, 373, 383, 443, 457, 577, 823, 857, 907, 1117, 1153, 1193, 1223, 1277, 1447, 1453, 1523, 1697, 1733, 1823, 1873, 2027, 2153, 2203, 2293, 2333, 2357, 2467, 2557, 2657, 2683, 2707, 2777, 2797, 2803, 2903, 3217, 3253, 3323, 3407, 3433, 3643, 3673
Offset: 1

Views

Author

J. M. Bergot and Robert Israel, Oct 14 2020

Keywords

Comments

All terms end in 2, 3 or 7.

Examples

			a(3)=7 is a member because 7 is prime and (7^2+6)/5 = 11 is prime.
		

Crossrefs

Cf. A154418.

Programs

  • Maple
    select(p -> isprime(p) and isprime((p^2+6)/5), [2,seq(seq(10*i+j,j=[3,7]),i=0..1000)]);