cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A249697 First row of spectral array W(Pi-2).

Original entry on oeis.org

1, 8, 9, 64, 73, 516, 589, 4160, 4749, 33540, 38289, 270416, 308704, 2180232, 2488936, 17578149
Offset: 1

Views

Author

Colin Barker, Nov 04 2014

Keywords

Crossrefs

Programs

  • 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) = {
      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(Pi-2, 1, 10^7)
Showing 1-1 of 1 results.