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.

A092475 Primes p such that p + 2^2, p + 4^2 and p + 6^2 are also primes.

This page as a plain text file.
%I A092475 #19 Mar 26 2024 05:17:38
%S A092475 7,37,43,67,163,277,463,487,823,1087,1093,1213,1423,2683,3907,4447,
%T A092475 5653,7687,8677,8803,11467,11923,13147,13693,15787,16417,16657,16927,
%U A092475 18253,18397,19387,20113,20353,21487,27763,28627,30493,34483,38917,39103,40483,41227
%N A092475 Primes p such that p + 2^2, p + 4^2 and p + 6^2 are also primes.
%H A092475 G. C. Greubel, <a href="/A092475/b092475.txt">Table of n, a(n) for n = 1..10000</a>
%F A092475 A049492 INTERSECT A156104. - _R. J. Mathar_, Mar 26 2024
%e A092475 a(3) = 43.
%e A092475 43 + 2^2 = 43 +  4 = 47, which is prime.
%e A092475 43 + 4^2 = 43 + 16 = 59, which is prime.
%e A092475 43 + 6^2 = 43 + 36 = 79, which is prime.
%t A092475 Select[Prime[Range[5000]],And@@PrimeQ[{#+4,#+16,#+36}]&] (* _Harvey P. Dale_, Jun 09 2011 *)
%Y A092475 Subsequence of A049492.
%K A092475 nonn
%O A092475 1,1
%A A092475 _Ray G. Opao_, Mar 25 2004
%E A092475 More terms from _Harvey P. Dale_, Jun 09 2011