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.

A203745 v(n+1)/v(n), where v=A203744.

Original entry on oeis.org

1, 9, 343, 159201, 405644148, 8381289855897, 1133306048131390809, 1093947085320463930138128, 7194345828945469232715564421275, 327523371985748110292890409683276560873, 102224358690662476283916918246343386308640672768
Offset: 1

Views

Author

Clark Kimberling, Jan 05 2012

Keywords

Comments

See A093883 for a discussion and guide to related sequences.

Programs

  • Mathematica
    f[j_] := Fibonacci[j]; z = 11;
    u := Product[f[j]^2 - f[j] f[k] + f[k]^2, {j, 1, k - 1}]
    v[n_] := Product[u, {k, 2, n}]
    Table[v[n], {n, 1, z}]          (* A203744 *)
    Table[v[n + 1]/v[n], {n, 1, z}] (* A203745 *)