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.

A276130 a(0) = a(1) = a(2) = a(3) = a(4) = 1; for n>4, a(n) = ( a(n-1) +a(n-3) )*( a(n-2)+a(n-4) ) / a(n-5).

Original entry on oeis.org

1, 1, 1, 1, 1, 4, 10, 55, 649, 38881, 6414706, 24978826228, 2913605221297249, 112139525368095766797655, 8403341152380185679389503620974065, 146904111947501701959735285821948223340424963459227
Offset: 0

Views

Author

Bruno Langlois, Aug 21 2016

Keywords

Crossrefs

Cf. A006721.

Programs

  • PARI
    a(n) = if (n<=4, 1, (9-3*(-1)^n)/2*a(n-1)*a(n-3)-a(n-2)-a(n-4)); \\ Michel Marcus, Aug 27 2016

Formula

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