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.

A098412 Greatest members p of prime triples (p-6, p-4, p).

This page as a plain text file.
%I A098412 #20 Feb 16 2025 08:32:54
%S A098412 11,17,23,47,107,113,197,233,317,353,467,647,827,863,887,1097,1283,
%T A098412 1307,1433,1487,1493,1613,1877,2003,2087,2243,2273,2663,2693,3257,
%U A098412 3467,3533,3677,3923,4007,4133,4523,4643,4793,4937,4973,5237,5483,5507,5657,6203
%N A098412 Greatest members p of prime triples (p-6, p-4, p).
%C A098412 Subsequence of A046117; a(n) = A073648(n) + 4 = A022004(n) + 6.
%H A098412 Harvey P. Dale, <a href="/A098412/b098412.txt">Table of n, a(n) for n = 1..1000</a>
%H A098412 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/PrimeTriplet.html">Prime Triplet</a>
%p A098412 K:=10^7: # to get all terms <= K.
%p A098412 for n from 1 by 2 to K do; if isprime(n-6) and isprime(n-4) and isprime(n) then print(n) else fi; od;  # _Muniru A Asiru_, Aug 06 2017
%t A098412 Select[Table[Prime[n], {n, 1000}], PrimeQ[# - 4] && PrimeQ[# - 6] &] (* _Vladimir Joseph Stephan Orlovsky_, Jun 19 2011 *)
%t A098412 Select[Partition[Prime[Range[1000]],3,1],Differences[#]=={2,4}&][[All,3]] (* _Harvey P. Dale_, Sep 23 2017 *)
%o A098412 (Magma)[p: p in PrimesUpTo(6500)|IsPrime(p) and IsPrime(p-6) and IsPrime(p-4)]; // _Vincenzo Librandi_, Dec 26 2010
%Y A098412 Cf. A098413, A098415.
%K A098412 nonn
%O A098412 1,1
%A A098412 _Reinhard Zumkeller_, Sep 07 2004