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.
%I A293419 #13 Sep 08 2022 08:46:19 %S A293419 0,2,2,3,5,8,12,19,30,49,78,126,204,330,534,863,1396,2259,3655,5913, %T A293419 9568,15480,25048,40528,65575,106102,171676,277777,449453,727230, %U A293419 1176683,1903912,3080595,4984507,8065101,13049607,21114707,34164313,55279019,89443332 %N A293419 a(n) is the least integer k such that k/Fibonacci(n) > sqrt(2). %H A293419 Clark Kimberling, <a href="/A293419/b293419.txt">Table of n, a(n) for n = 0..1000</a> %F A293419 a(n) = ceiling(Fibonacci(n)*sqrt(2)). %F A293419 a(n) = A293418(n) + 1 for n > 0. %t A293419 z = 120; r = Sqrt[2]; f[n_] := Fibonacci[n]; %t A293419 Table[Floor[r*f[n]], {n, 0, z}]; (* A293418 *) %t A293419 Table[Ceiling[r*f[n]], {n, 0, z}]; (* A293419 *) %t A293419 Table[Round[r*f[n]], {n, 0, z}]; (* A293420 *) %o A293419 (PARI) for(n=0, 30, print1(ceil(fibonacci(n)*sqrt(2)), ", ")) \\ _G. C. Greubel_, Feb 08 2018 %o A293419 (Magma) [Ceiling(Fibonacci(n)*Sqrt(2)): n in [0..30]]; // _G. C. Greubel_, Feb 08 2018 %Y A293419 Cf. A000045, A293418, A293420. %K A293419 nonn,easy %O A293419 0,2 %A A293419 _Clark Kimberling_, Oct 12 2017