OFFSET
1,2
COMMENTS
(a(n), A075318(n)) = (2A(n)-1, 2B(n)-1), where A and B are the basic Wythoff sequences A(n)=A000201(n) and B(n)=A001950(n). For a proof cf. Section 2 of the Carlitz et al. paper. - Michel Dekking, Sep 05 2016
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
L. Carlitz, R. Scoville and V. E. Hoggatt, Jr., Fibonacci representations, Fib. Quart. 10 (1972), 1-28.
FORMULA
a(n) = 2*floor(n*phi)-1, where phi=(1+sqrt(5))/2. - Michel Dekking, Sep 05 2016
MAPLE
A075317 := proc(nmax) local r, k, a, pairs ; a := [1] ; pairs := [1, 3] ; k := 2 ; r := 5 ; while nops(a) < nmax do while r in pairs do r := r+2 ; od ; a := [op(a), r] ; if r+2*k in pairs then printf("inconsistency", k) ; fi ; pairs := [op(pairs), r, r+2*k] ; k := k+1 ; od ; RETURN(a) ; end: a := A075317(200) ; for n from 1 to nops(a) do printf("%d, ", op(n, a)) ; od ; # R. J. Mathar, Nov 12 2006
MATHEMATICA
Table[2 Floor[n (1 + Sqrt[5]) / 2] - 1, {n, 80}] (* Vincenzo Librandi, Sep 05 2016 *)
PROG
(Magma) [2*Floor(n*(1+Sqrt(5))/2)-1: n in [1..60]]; // Vincenzo Librandi, Sep 05 2016
(Python)
from math import isqrt
def A075317(n): return (n+isqrt(5*n**2)&-2)-1 # Chai Wah Wu, Aug 16 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Sep 14 2002
EXTENSIONS
More terms from R. J. Mathar, Nov 12 2006
STATUS
approved