login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A216223 Distance from Fibonacci(n) to the next perfect square. 3

%I #17 Oct 27 2022 11:49:00

%S 0,0,0,2,1,4,1,3,4,2,9,11,0,23,23,15,37,3,17,44,124,79,245,243,288,51,

%T 408,718,285,1295,1529,1652,267,2306,4434,1979,144,9239,11840,4223,

%U 19534,5283,29865,19604,46492,45551,67706,16008,92593,145155,102696,276775

%N Distance from Fibonacci(n) to the next perfect square.

%C Difference between y^2 and Fibonacci(n), y being next integer square root of Fibonacci(n). a(n)=0 only for n = 0, 1, 2, 12.

%C a(n) is a square for n = 0, 1, 2, 4, 5, 6, 8, 10, 12, 36.

%H Alois P. Heinz, <a href="/A216223/b216223.txt">Table of n, a(n) for n = 0..5000</a>

%F a(n) = floor(sqrt(Fibonacci(n))+1)^2-Fibonacci(n) if n<>1, 2, 12; else a(n)=0.

%e a(5) = 4 since Fibonacci(5)=5 that differs 4 to next square that is 9.

%p a:= n-> (f-> ceil(sqrt(f))^2-f)((<<0|1>, <1|1>>^n)[1, 2]):

%p seq(a(n), n=0..51); # _Alois P. Heinz_, Oct 26 2022

%t Table[k = Ceiling[Sqrt[Fibonacci[n]]]; k^2 - Fibonacci[n], {n, 0, 60}] (* _T. D. Noe_, Mar 13 2013 *)

%Y Cf. A000045, A190993.

%K nonn

%O 0,4

%A _Carmine Suriano_, Mar 13 2013

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)