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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A111077 Smallest squarefree integer > the n-th term of the Fibonacci sequence. 1
1, 2, 2, 3, 5, 6, 10, 14, 22, 35, 57, 91, 145, 235, 379, 611, 989, 1598, 2585, 4182, 6766, 10947, 17713, 28658, 46369, 75026, 121394, 196419, 317813, 514230, 832042, 1346270, 2178310, 3524579, 5702889, 9227467, 14930353, 24157819, 39088171 (list; graph; refs; listen; history; text; internal format)
OFFSET

0,2

LINKS

Table of n, a(n) for n=0..38.

EXAMPLE

a(4)= 5 because 5 is the smallest squarefree integer greater than 3, the 4th number of the Fibonacci sequence.

MAPLE

with(numtheory): with(combinat): a:=proc(n) local B, j: B:={}: for j from 1+fibonacci(n) to 20+fibonacci(n) do if abs(mobius(j))>0 then B:=B union {j} else B:=B fi od: B[1]: end: seq(a(n), n=0..43); (Deutsch)

MATHEMATICA

f[n_] := Block[{k = Fibonacci[n] + 1}, While[ Union[Last /@ FactorInteger[k]][[ -1]] > 1, k++ ]; k]; Table[ f[n], {n, 0, 38}] (* Robert G. Wilson v *)

CROSSREFS

Cf. A005117, A000045.

Sequence in context: A004037 A160235 A050380 * A032157 A153926 A035425

Adjacent sequences:  A111074 A111075 A111076 * A111078 A111079 A111080

KEYWORD

nonn

AUTHOR

Joseph Buszka (jab5118(AT)psu.edu), Oct 11 2005

EXTENSIONS

More terms from Robert G. Wilson v and Emeric Deutsch, Oct 11 2005

STATUS

approved

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 June 18 02:45 EDT 2013. Contains 226327 sequences.