OFFSET
1,2
COMMENTS
From Logan J. Kleinwaks, Oct 29 2017: (Start)
The squares of this sequence are the squares in A232656.
REFERENCES
Teruo Nishiyama, Fibonacci numbers, Suuri-Kagaku, No. 285, March 1987, 67-69, (in Japanese).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..360
Brandon Avila and Tanya Khovanova, Free Fibonacci Sequences, Journal of Integer Sequences, Vol. 17 (2014), Article 14.8.5; arXiv preprint, arXiv:1403.4614 [math.NT], 2014.
EXAMPLE
If a = 1, b = 4, then G_k is (1, 4, 5, 9, 14, 23, ...) and no G_k is a multiple of 11. Therefore 11 is not in the sequence.
MATHEMATICA
g[a_, b_, k_] := Fibonacci[k-2]*a + Fibonacci[k-1]*b; ok[n_] := Catch[ Do[ test = Catch[ Do[ If[ Divisible[g[a, b, k], n], Throw[True]], {k, 1, 2*n}]]; If[test == Null, Throw[False]], {a, 1, Floor[Sqrt[n]]}, {b, 1, Floor[Sqrt[n]]}]] ; Reap[ Do[ If[ok[n] == Null, Print[n]; Sow[n]], {n, 1, 1000}]][[2, 1]] (* Jean-François Alcover, Jul 19 2012 *)
CROSSREFS
KEYWORD
easy,nonn,nice
AUTHOR
Naohiro Nomoto, Oct 15 2001
EXTENSIONS
More terms from David Wasserman, Jul 18 2002
Name edited by David A. Corneth, Oct 30 2017
STATUS
approved