OFFSET
0,6
LINKS
Harry J. Smith, Table of n, a(n) for n = 0..500
EXAMPLE
a(10) = 7 because the 10th Fibonacci number is 55 and floor(sqrt(55)) = floor(7.4161) = 7.
MATHEMATICA
Array[Floor[Sqrt[Fibonacci[ # ]]]&, 5!, 0] (* Vladimir Joseph Stephan Orlovsky, Nov 10 2009 *)
PROG
(PARI) { g=0; f=1; for (n=0, 500, write("b061287.txt", n, " ", sqrtint(g)); s=f; f+=g; g=s ) } \\ Harry J. Smith, Jul 20 2009
(Sage) [floor(sqrt(fibonacci(n))) for n in range(0, 51)] # Zerinvary Lajos, Dec 01 2009
(Maxima) makelist(floor(sqrt(fib(n))), n, 0, 24); /* Emanuele Munarini, Jul 07 2011 */
(Magma) [Floor(Sqrt(Fibonacci(n))): n in [0..50]]; // Vincenzo Librandi, Sep 29 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Amarnath Murthy, Apr 25 2001
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org), May 07 2001
STATUS
approved