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!)
A248850 First row of spectral array W(1/sin(1)). 0
1, 6, 7, 37, 43, 233, 276, 1469, 1745, 9266, 11011, 58449, 69460, 368695, 438155, 2325725, 2763880, 14670658 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
1/sin(1) = 1.18839510577812121626159945237455100352782983409796262526525...
The sequence is generated from the Beatty sequence (A108120) and from the complement of the Beatty sequence (A108587) for 1/sin(1).
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 b and c.
row(h, i, m) = {
if(h<=1 || h>=2, print("Invalid value for h"); return);
my(
b=vector(m, n, floor(n*h)), \\ Beatty sequence for h
c=vector(m, n, floor(n*h/(h-1))), \\ Complement of b
w=[b[b[i]], c[b[i]]],
j=3
);
while(1,
if(j%2==1,
if(w[j-1]<=#b, w=concat(w, b[w[j-1]]), return(w))
,
if(w[j-2]<=#c, w=concat(w, c[w[j-2]]), return(w))
);
j++
)
}
allocatemem(10^9)
default(realprecision, 100)
row(1/sin(1), 1, 10^7)
CROSSREFS
Sequence in context: A175167 A027021 A013627 * A294728 A219212 A301904
KEYWORD
nonn,more
AUTHOR
Colin Barker, Dec 03 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 18 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)