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!)
A250255 First row of spectral array W(e^gamma). 2
1, 2, 3, 4, 7, 9, 16, 20, 35, 45, 80, 102, 181, 232, 413, 529, 942, 1206, 2147, 2750, 4897, 6270, 11167, 14297, 25463, 32601, 58064, 74339, 132403, 169514, 301916, 386541, 688457, 881425, 1569881, 2009905, 3579786, 4583168, 8162954, 10450956 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Gamma is Euler's (or Euler-Mascheroni) constant.
LINKS
A. Fraenkel and C. Kimberling, Generalized Wythoff arrays, shuffles and interspersions, Discrete Mathematics 126 (1994) 137-149.
PROG
(PARI)
\\ Row i of the generalized Wythoff array W(h),
\\ where h is an irrational number between 1 and 2,
\\ and m is the number of terms in the vectors a and b.
row(h, i, m) = {
if(h<=1 || h>=2, print("Invalid value for h"); return);
my(
a=vector(m, n, floor(n*h)),
b=vector(m, n, floor(n*h/(h-1))),
w=[a[a[i]], b[a[i]]],
j=3
);
while(1,
if(j%2==1,
if(w[j-1]<=#a, w=concat(w, a[w[j-1]]), return(w))
,
if(w[j-2]<=#b, w=concat(w, b[w[j-2]]), return(w))
);
j++
)
}
allocatemem(10^9)
row(exp(1)^Euler, 1, 10^7)
CROSSREFS
Cf. A001620 (Gamma), A059565 (Corresponding Beatty sequence), A250253, A250254.
Sequence in context: A293853 A067236 A320357 * A070763 A295619 A319645
KEYWORD
nonn
AUTHOR
Colin Barker, Nov 15 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 17 23:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)