OFFSET
1,1
COMMENTS
It would be nice to have a more precise definition.
From Ray Chandler, Sep 11 2017: (Start)
The sequence is the union of three types of numbers:
(1) A060626 beginning with the 2nd term.
(2) A089508 beginning with the 3rd term and omitting even values (every third term).
(3) A082109 beginning with the 2nd term.
Note that there appear to be other solutions that are not covered by Theorem 12.
(End)
LINKS
Ray Chandler, Table of n, a(n) for n = 1..10000
Eugen J. Ionascu, Thor Martinsen, and Pantelimon Stanica, Bisecting binomial coefficients, arXiv:1610.02063 [math.CO], 2016. See p. 18.
MATHEMATICA
lim=3000; a0={};
k=4; While[c=k^2-3; c<=lim, a0=Join[a0, {c, c+1}]; k+=2];
k=2; While[c=Fibonacci[2k]*Fibonacci[2k+1]-1; c<=lim, If[OddQ[c], AppendTo[a0, c]]; k++];
a0=Sort[a0] (* Ray Chandler, Sep 11 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Sep 10 2017
STATUS
approved