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.

A235858 Associated with random Penrose-Robinson tilings of the plane.

Original entry on oeis.org

1, 4, 88, 236544, 211790340292608, 56686233255830734129089579999779880960
Offset: 0

Views

Author

Steven Finch, Jan 16 2014

Keywords

Comments

In the Mathematica code, let p=A235857; q=A235858 for convenience.

Crossrefs

Programs

  • Mathematica
    p[n_] := p[n] = 2 p[n-1] q[n-1] - p[n-1]^2 q[n-2];
    q[n_] := 2 p[n] q[n-1] - p[n-1] p[n-2] q[n-1] q[n-2]^2;
    p[0] = 1; q[0] = 1; p[1] = 2; q[1] = 4;