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.

A219160 Recurrence equation a(n+1) = a(n)^3 - 3*a(n) with a(0) = 4.

Original entry on oeis.org

4, 52, 140452, 2770663499604052, 21269209556953516583554114034636483645584976452
Offset: 0

Views

Author

Peter Bala, Nov 13 2012

Keywords

Comments

For some general remarks on this recurrence see A001999.

Crossrefs

Programs

  • Mathematica
    RecurrenceTable[{a[n] == a[n - 1]^3 - 3*a[n - 1], a[0] == 4}, a, {n,
      0, 5}] (* G. C. Greubel, Dec 30 2016 *)

Formula

a(n) = (2 + sqrt(3))^(3^n) + (2 - sqrt(3))^(3^n).
Product {n = 0..inf} (1 + 2/(a(n) - 1)) = sqrt(3). The rate of convergence is cubic. Fine remarks that taking the first twelve factors of the product would give well over 300,000 correct decimals for sqrt(3).