OFFSET
1,2
COMMENTS
EXAMPLE
The lower Wythoff sequence begins with 1,3,4,6,8,9,...
Double these: 2,6,8,12,16,18...; subtract 1: 1,5,7,11,15,17;
Then merge: 1,2,5,6,7,8,11,12,15,16,17,18,...
PROG
(Python)
from math import isqrt
def A137708(n): return ((m:=n+1>>1)+isqrt(5*m**2)&-2)-(n&1) # Chai Wah Wu, Aug 11 2022
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Feb 07 2008
EXTENSIONS
a(37)=59 corrected by Georg Fischer, Nov 24 2022
STATUS
approved