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.

A005167 a(n+1) = (1 + a(0)^4 + ... + a(n)^4 )/(n+1) (not always integral!).

Original entry on oeis.org

1, 2, 9, 2193, 5782218987645, 223567225753623833253893162919867828939456664850241
Offset: 0

Views

Author

Keywords

Comments

Terms are integer until n=A097398(3,2)=97.
Guy states that by computing the sequence modulo 97 it is easy to show that a(97) is not integral. - T. D. Noe, Sep 17 2007
The next term -- a(6) -- has 201 digits. - Harvey P. Dale, Nov 20 2018

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Mathematica
    nxt[{n_,a_,t_}]:={n+1,(1+t)/(n+1),t+((1+t)/(n+1))^4}; NestList[nxt,{0,1,1},5][[All,2]] (* Harvey P. Dale, Nov 20 2018 *)