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.

A252730 a(n) = P_n(n) with P_0(z) = z+1 and P_n(z) = z + P_{n-1}(z)*(P_{n-1}(z)-z) for n>1.

Original entry on oeis.org

1, 3, 17, 871, 4870849, 483209576974811, 36956045653220845240164417232897, 8498748758632331927648392184620600167779995785955324343380396911247
Offset: 0

Views

Author

Alois P. Heinz, Dec 20 2014

Keywords

Crossrefs

Main diagonal of A177888.

Programs

  • Maple
    p:= proc(n) option remember;
          z-> z+ `if`(n=0, 1, p(n-1)(z)*(p(n-1)(z)-z))
        end:
    a:= n-> p(n)(n):
    seq(a(n), n=0..8);
  • Mathematica
    p[n_] := p[n] = Function[z, z + If[n == 0, 1, p[n-1][z]*(p[n-1][z] - z)]];
    a[n_] := p[n][n];
    Table[a[n], {n, 0, 8}] (* Jean-François Alcover, Jun 12 2018, from Maple *)