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.

A276131 a(n) = (a(n-1)^2+a(n-2)^2+a(n-3)^2+a(n-4)^2+a(n-1)*a(n-2)+a(n-1)*a(n-3)+a(n-1)*a(n-4)+a(n-2)*a(n-3)+a(n-2)*a(n-4)+a(n-3)*a(n-4))/a(n-5) with five initial ones.

Original entry on oeis.org

1, 1, 1, 1, 1, 10, 136, 20251, 413100001, 170660037240000001, 2912484838126132813026335712191641, 62371823031725048177115183368983888882661870237372850050710016335
Offset: 0

Views

Author

Seiichi Manyama, Aug 21 2016

Keywords

Crossrefs

Programs

  • Mathematica
    nxt[{a_,b_,c_,d_,e_}]:={b,c,d,e,15(b*c*d*e)-a-b-c-d-e}; NestList[nxt,{1,1,1,1,1},15][[;;,1]] (* Harvey P. Dale, May 18 2024 *)

Formula

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