cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A061287 Integer part of square root of n-th Fibonacci number.

This page as a plain text file.
%I A061287 #23 Sep 08 2022 08:45:03
%S A061287 0,1,1,1,1,2,2,3,4,5,7,9,12,15,19,24,31,39,50,64,82,104,133,169,215,
%T A061287 273,348,443,563,717,912,1160,1475,1877,2388,3037,3863,4915,6252,7952,
%U A061287 10116,12867,16368,20820,26484,33688,42852,54508,69336,88197,112188
%N A061287 Integer part of square root of n-th Fibonacci number.
%H A061287 Harry J. Smith, <a href="/A061287/b061287.txt">Table of n, a(n) for n = 0..500</a>
%e A061287 a(10) = 7 because the 10th Fibonacci number is 55 and floor(sqrt(55)) = floor(7.4161) = 7.
%t A061287 Array[Floor[Sqrt[Fibonacci[ # ]]]&,5!,0] (* _Vladimir Joseph Stephan Orlovsky_, Nov 10 2009 *)
%o A061287 (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
%o A061287 (Sage) [floor(sqrt(fibonacci(n))) for n in range(0,51)] # _Zerinvary Lajos_, Dec 01 2009
%o A061287 (Maxima) makelist(floor(sqrt(fib(n))),n,0,24); /* _Emanuele Munarini_, Jul 07 2011 */
%o A061287 (Magma) [Floor(Sqrt(Fibonacci(n))): n in [0..50]]; // _Vincenzo Librandi_, Sep 29 2017
%K A061287 nonn,easy
%O A061287 0,6
%A A061287 _Amarnath Murthy_, Apr 25 2001
%E A061287 More terms from Larry Reeves (larryr(AT)acm.org), May 07 2001