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.

A368327 a(0) = 0; a(n) = (1+a(n-1))^5 for n > 0.

Original entry on oeis.org

0, 1, 32, 39135393, 91801241053644953553642221885011784224
Offset: 0

Views

Author

Michael De Vlieger, Dec 21 2023

Keywords

Crossrefs

Programs

  • Mathematica
    {0}~Join~NestList[(# + 1)^5 &, 1, 5]