A366414 Primes p such that p and the four previous primes are in arithmetic progression.
9843139, 37772549, 53868769, 71427877, 78364669, 79080697, 98150141, 99591553, 104437009, 106457629, 111267539, 121174931, 121174961, 168236239, 199450219, 203909011, 207068923, 216618307, 230952979, 234058991, 235524901, 253412437, 263651281, 268843153, 294485483, 296239907
Offset: 1
Examples
9843019, 9843049, 9843079, 9843109, 9843139 are the 5 consecutive primes starting from A059044(1) and ending at a(1).
Programs
-
Mathematica
Select[Partition[Prime[Range[10^7]],5,1],Length[Union[Differences[#]]]==1&][[;;,5]]