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.

Showing 1-1 of 1 results.

A160569 a(n)=9*(a(n-1)a(n-3)-a(n-2)^2)/a(n-4), a(1)=a(2)=a(3)=1, a(4)=-9.

Original entry on oeis.org

1, 1, 1, -9, -90, -1539, 51759, 7026831, 1349328699, -119669884380, -462804380329131, -818173230956710191, -775566981773559330471, 23349606875054800260574779, 383206716517298992863985977570
Offset: 0

Views

Author

Paul Barry, May 19 2009

Keywords

Comments

a(n+1) is the Hankel transform of A160568.

Crossrefs

Programs

  • Mathematica
    nxt[{a_,b_,c_,d_}]:={b,c,d,(9(d*b-c^2))/a}; NestList[nxt,{1,1,1,-9},20][[All,1]] (* Harvey P. Dale, Feb 21 2022 *)
Showing 1-1 of 1 results.