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!)
A236506 Conjectured least index k > 2 of Fibonacci-like sequence f(i+2) = f(i+1) + f(i), with f(1)=1 and f(2)=n, such that f(k) is a square, or k=0 if squares do not exist in the corresponding sequence. 3
12, 11, 3, 4, 0, 10, 0, 3, 11, 10, 0, 4, 0, 0, 3, 0, 0, 11, 15, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 3, 0, 0, 12, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 11, 10, 0, 4 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
n=1 corresponds to the usual Fibonacci sequence, for which f(12) = 144 = 12^2, so a(1)=12.
REFERENCES
J. H. E. Cohn, On square Fibonacci numbers, J. London Math. Soc. 39 (1964), 537-540.
LINKS
EXAMPLE
a(6)=10 since f(10) = 361 = 19^2 for sequence starting f(1)=1, f(2)=6.
MATHEMATICA
squareQ[n_] := IntegerQ[Sqrt[n]]; nn = 100; Table[f = {1, n}; Do[AppendTo[f, f[[-1]] + f[[-2]]], {i, 3, nn}]; k = 2; While[k++; k <= nn && ! squareQ[f[[k]]]]; If[k > nn, k = 0]; k, {n, 100}] (* T. D. Noe, Jan 28 2014 *)
CROSSREFS
Cf. A000045 (Fibonacci numbers), A236534.
Cf. A233513 (triangular array for f(1)=m and f(2)=n).
Sequence in context: A297910 A298503 A038336 * A087868 A233513 A175042
KEYWORD
nonn
AUTHOR
Carmine Suriano, Jan 27 2014
STATUS
approved

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 06:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)