OFFSET
1,3
EXAMPLE
Fib(10)=55 is there because both 10 and 55 are squarefree.
MAPLE
with(combinat, fibonacci): fib_supM_dsk := proc(n); if (numtheory[issqrfree](n)='true') then if (numtheory[issqrfree](fibonacci(n))='true') then RETURN(fibonacci(n)); fi; fi; end: seq(fib_supM_dsk(i), i=1..100);
MATHEMATICA
Select[With[{nn=70}, Thread[{Range[nn], Fibonacci[Range[nn]]}]], AllTrue[#, SquareFreeQ]&][[All, 2]] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, Apr 17 2018 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jani Melik, Oct 07 2002
EXTENSIONS
Edited by Don Reble, Nov 05 2005
STATUS
approved