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.

A262089 a(0) = 0, a(1) = 1, a(n) = a(n-2)^2 + a(n-1)^3.

Original entry on oeis.org

0, 1, 1, 2, 9, 733, 393832918, 61085205568458236705261921, 227933478957258798550715296531141857176484963515197706487620785853119292327685
Offset: 0

Views

Author

Andrew R. Reiter, Sep 10 2015

Keywords

Comments

Homogeneous cubic recurrence relation of order 2 with +1 coefficients.

Crossrefs

Cf. A262088.

Programs

  • Magma
    I:=[0,1]; [n le 2 select I[n] else Self(n-2)^2 + Self(n-1)^3: n in [1..10]]; // Vincenzo Librandi, Sep 11 2015
  • Mathematica
    RecurrenceTable[{a[0] == 0, a[1] == 1, a[n]==a[n-1]^3 + a[n-2]^2}, a, {n, 10}] (* Vincenzo Librandi, Sep 11 2015 *)

Extensions

Offset changed and terms a(0)-a(1) prepended by Vincenzo Librandi, Sep 11 2015