OFFSET
1,1
COMMENTS
Minimal difference is 6 (for 3-tuplet). Repeating 6 means successive 3-tuplets.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
FORMULA
Partition primes in triples starting with 7: {7, 11, 13}, {17, 19, 23}, {29, 31, 37}, {41, 43, 47}, {53, 59, 61}, {67, 71, 73}, {79, 83, 89}, {97, 101, 103}, {107, 109, 113}. Sequence gives differences between lesser and larger primes in triples.
MAPLE
Primes:= select(isprime, [2, seq(i, i=3..10000)]):
seq(Primes[3*n+3]-Primes[3*n+1], n=1..(nops(Primes)-3)/3); # Robert Israel, Dec 15 2019
MATHEMATICA
Last[#]-First[#]&/@Partition[Prime[Range[4, 250]], 3] (* Harvey P. Dale, Sep 06 2011 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Zak Seidov, Oct 05 2003
STATUS
approved