OFFSET
0,1
EXAMPLE
4 is a nonsquarefree number and Fibonacci(4)=3, 8 is a nonsquarefree number and Fibonacci(8)=21,...
MAPLE
with(combinat, fibonacci): fib_ndsk := proc(n); if (numtheory[issqrfree](n)='false') then # or # if (mobius(n)=0) then RETURN(fibonacci(n)) fi; end: seq(fib_ndsk(i), i=1..100);
MATHEMATICA
Fibonacci[#]&/@DeleteCases[Range[100], _?SquareFreeQ] (* Harvey P. Dale, Apr 20 2011 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jani Melik, Oct 07 2002
STATUS
approved