Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #11 Jul 09 2021 15:52:12
%S 1601,3911,12101,14621,32051,68891,122021,191441,258101,259151,276581,
%T 278801,305471,347051,390101,394721,418331,419591,421691,470201,
%U 482501,509681,678641,683471,832361,844421,914351,929051,977351,997091,1043831
%N Primes p such that the differences between the 5 consecutive primes starting with p are (6,2,4,6).
%C Equivalently, p, p+6, p+8, p+12 and p+18 are consecutive primes.
%C Subsequence of A078853. - _R. J. Mathar_, May 06 2017
%e 3911 is in the sequence since 3911, 3917, 3919, 3923 and 3929 are consecutive primes.
%t Select[Partition[Prime[Range[82000]],5,1],Differences[#]=={6,2,4,6}&][[All,1]] (* _Harvey P. Dale_, Jul 09 2021 *)
%Y Cf. A001223, A078866, A078867, A078946-A078971, A022006, A022007.
%K nonn
%O 1,1
%A _Labos Elemer_, Dec 19 2002
%E Edited by _Dean Hickerson_, Dec 20 2002