OFFSET
1,2
REFERENCES
J. Recreational Math., vol. 23, No. 2, 1991, p. 97.
LINKS
EXAMPLE
For n=2 the quadruples are 3,5,7,11; 5,7,11,13; 11,13,17,19.
MAPLE
with(numtheory): x := 1229; t1 := [seq(ithprime(i), i=1..x)]; c := 0: for i from 1 to x-3 do if t1[i]+8 = t1[i+3] then c := c+1; fi; od: c; # the values of x to use are given by A006880.
MATHEMATICA
x=168; a=Table[ Prime[ n ], {n, 1, x} ]; c=0; Do[ If[ a[ [ n ] ]+8==a[ [ n+2 ] ], c++ ], {n, 1, x-3} ]; # the values of x to use are given by A006880.
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jun 09 2000
EXTENSIONS
a(8)-a(9) from Jud McCranie, Oct 08 2000.
a(10)-a(12) from Bert Dobbelaere, Apr 17 2019
a(13)-a(15) from Charles R Greathouse IV, Feb 12 2022
STATUS
approved