OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
The triple {a(6), a(6)+1, a(6)+2}, for instance, i.e., (74087=41*1807, 74088=42*1764, 74089=43*1723) is the smallest one whose elements are respectively divisible by those of (41, 42, 43), (41, 43) being the 6th twin prime pair.
MAPLE
map(t -> (t+1)^3-1, select(t -> isprime(t) and isprime(t+2), [3, seq(i, i=5..10^4, 6)])); # Robert Israel, May 16 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Lekraj Beedassy, Sep 07 2004
STATUS
approved