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.

Showing 1-1 of 1 results.

A275587 a(1) = 0; thereafter a(n) = s^s where s = Sum_{k=1..n-1} a(k).

Original entry on oeis.org

0, 1, 1, 4, 46656
Offset: 1

Views

Author

Rick L. Shepherd, Aug 02 2016

Keywords

Comments

a(2) = 1 by the convention that 0^0 = 1. a(6) = 46662^46662 = 1471657830...9021753344, which has 217864 decimal digits.

Crossrefs

Programs

  • Mathematica
    a[0] = 0; a[1] = 1; a[n_] := a[n] = #^# &@ Sum[a[k], {k, 1, n - 1}]; Table[a[n], {n, 0, 5}] (* Michael De Vlieger, Aug 04 2016 *)
  • PARI
    a(n) = local(s); if(n==1, 0, if(n>1, s = sum(k=1, n - 1, a(k)); s^s))
Showing 1-1 of 1 results.