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.

A122025 a(n) = (3*a(n-1)*a(n-4) - a(n-2)*a(n-3)) / a(n-5).

Original entry on oeis.org

1, 1, 1, 1, 1, 2, 5, 13, 29, 109, 629, 4274, 23329, 170353, 2034385, 35152177, 494532481, 7768108946, 176258003381, 7248370100941, 266967020984381, 9997125891977197, 431397731193035525, 38079906742644329378
Offset: 0

Views

Author

Roger L. Bagula, Sep 13 2006

Keywords

Crossrefs

Cf. A006722.

Programs

  • Mathematica
    a[n_] := a[n] = (3*a[n - 1]a[n - 4] - a[n - 2]*a[n - 3])/a[n - 5]; a[0] = 1; a[1] = 1; a[2] = 1; a[3] = 1; a[4] = 1; Table[a[n], {n, 0, 30}]
    RecurrenceTable[{a[1]==a[2]==a[3]==a[4]==a[5]==1,a[n]==(3a[n-1]a[n-4]-a[n-2]a[n-3])/a[n-5]},a,{n,30}] (* Harvey P. Dale, Sep 02 2017 *)

Extensions

Edited by N. J. A. Sloane, Sep 17 2006