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.

A005166 a(0) = 1; a(n) = (1 + a(0)^3 + ... + a(n-1)^3)/n (not always integral!).

Original entry on oeis.org

1, 2, 5, 45, 22815, 2375152056927, 2233176271342403475345148513527359103
Offset: 0

Views

Author

Keywords

Comments

Terms are integers until n=A097398(2,2)=89.
Guy states that by computing the sequence modulo 89 it is easy to show that a(89) is not integral. - T. D. Noe, Sep 17 2007

References

  • R. K. Guy, Unsolved Problems in Number Theory, Springer, 1st edition, 1981. See section E15.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Mathematica
    a[0]=1; a[n_]:=(1 + Sum[a[k]^3, {k,0,n-1}])/n; Array[a,7,0] (* Stefano Spezia, Oct 13 2024 *)