login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A053674 Least number coprime to n, n+1, n+2, n+3, n+4 and n+5. 13
7, 11, 11, 11, 11, 13, 13, 7, 17, 17, 17, 11, 11, 11, 7, 11, 13, 13, 13, 13, 17, 7, 11, 11, 11, 11, 11, 13, 7, 13, 13, 13, 13, 11, 11, 7, 11, 11, 17, 13, 13, 13, 7, 13, 11, 11, 11, 11, 11, 7, 19, 17, 13, 13, 13, 11, 7, 11, 11, 11, 17, 17, 19, 7, 19, 13, 11, 11, 11, 11, 7, 13 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

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}] (* From Jean-François Alcover, Nov 30 2011 *)

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

CROSSREFS

Cf. A053669-A053673.

Sequence in context: A071631 A054510 A134702 * A205679 A166980 A184071

Adjacent sequences:  A053671 A053672 A053673 * A053675 A053676 A053677

KEYWORD

nonn,easy,nice

AUTHOR

Henry Bottomley (se16(AT)btinternet.com), Feb 15 2000

EXTENSIONS

More terms from Andrew Gacek (andrew(AT)dgi.net), Feb 21 2000 and James A. Sellers (sellersj(AT)math.psu.edu), Feb 22 2000

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 10:28 EST 2012. Contains 205763 sequences.