OFFSET
1,1
COMMENTS
All terms are primes greater than 5. Records: a(1) = 7, a(2) = 11, a(6) = 13, a(9) = 17, a(51) = 19, a(151) = 23, a(437) = 29, a(779) = 31, a(1766) = 37, a(60605) = 41, a(324596) = 43, a(3555107) = 47, a(14511250) = 53, a(65209022) = 59, a(764050703) = 61, .... - Charles R Greathouse IV, Feb 07 2017
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
MATHEMATICA
a[n_] := (k = 7; While[ ! And @@ (CoprimeQ[k, #] & ) /@ Range[n, n+5], k++]; k); Table[a[n], {n, 1, 72}] (* Jean-François Alcover, Nov 30 2011 *)
cpr[n_]:=Module[{k=7}, While[Union[Boole[CoprimeQ[k, n+Range[0, 5]]]]!={1}, k = NextPrime[ k]]; k](* Harvey P. Dale, May 12 2022 *)
PROG
(Haskell)
import Data.List (elemIndex)
import Data.Maybe (fromJust)
a053674 n = 2 + fromJust
(elemIndex 1 $ map (gcd $ foldl1 lcm $ take 6 [n..]) [2..])
-- Reinhard Zumkeller, Sep 25 2011
(PARI) a(n)=my(L=lcm([n..n+5])); forprime(p=7, , if(L%p, return(p))) \\ Charles R Greathouse IV, Feb 07 2017
CROSSREFS
KEYWORD
nonn,easy,nice
AUTHOR
Henry Bottomley, Feb 15 2000
EXTENSIONS
More terms from Andrew Gacek (andrew(AT)dgi.net), Feb 21 2000 and James A. Sellers, Feb 22 2000
STATUS
approved