OFFSET
1,1
COMMENTS
The Rivera link gives the first 15 terms.
LINKS
Carlos Rivera, Puzzle 1059 Set of consecutive primes such that..., The Prime Puzzles and Problems Connection.
EXAMPLE
A001043 begins as (5, 8, 12, 18, 24, 30, 36, 42, 52) where 7 consecutive terms are multiple of 3 starting at 3rd term, corresponding to 5=prime(3), so 5 is the 1st term of this sequence.
MATHEMATICA
p=2; t=r=0; Monitor[Do[p=NextPrime[p]; t=0; While[Mod[p+NextPrime@p, 3]==0, p=NextPrime@p; t++]; If[t>r, Print[NextPrime[p, -t]]; r=t], {n, 10^14}], p] (* Giorgos Kalogeropoulos, Oct 24 2021 *)
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Michel Marcus, Oct 24 2021
STATUS
approved