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.

A020736 Pisot sequence L(5,8).

Original entry on oeis.org

5, 8, 13, 22, 38, 66, 115, 201, 352, 617, 1082, 1898, 3330, 5843, 10253, 17992, 31573, 55406, 97230, 170626, 299427, 525457, 922112, 1618193, 2839730, 4983378, 8745218, 15346787, 26931733, 47261896, 82938845, 145547526, 255418102, 448227522, 786584467
Offset: 0

Views

Author

Keywords

Crossrefs

See A008776 for definitions of Pisot sequences.

Programs

  • Magma
    Lxy:=[5,8]; [n le 2 select Lxy[n] else Ceiling(Self(n-1)^2/Self(n-2)): n in [1..40]]; // Bruno Berselli, Feb 05 2016
    
  • Mathematica
    RecurrenceTable[{a[0] == 5, a[1] == 8, a[n] == Ceiling[a[n - 1]^2/a[n - 2]]}, a, {n, 0, 40}] (* Bruno Berselli, Feb 05 2016 *)
  • PARI
    pisotL(nmax, a1, a2) = {
      a=vector(nmax); a[1]=a1; a[2]=a2;
      for(n=3, nmax, a[n] = ceil(a[n-1]^2/a[n-2]));
      a
    }
    pisotL(50, 5, 8) \\ Colin Barker, Aug 07 2016

Formula

a(n) = 3*a(n-1) - 3*a(n-2) + 2*a(n-3) - a(n-4) (holds at least up to n = 1000 but is not known to hold in general).