login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A275587 a(1) = 0; thereafter a(n) = s^s where s = Sum_{k=1..n-1} a(k). 1
0, 1, 1, 4, 46656 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
a(2) = 1 by the convention that 0^0 = 1. a(6) = 46662^46662 = 1471657830...9021753344, which has 217864 decimal digits.
LINKS
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 *)
PROG
(PARI) a(n) = local(s); if(n==1, 0, if(n>1, s = sum(k=1, n - 1, a(k)); s^s))
CROSSREFS
Sequence in context: A053937 A259160 A173138 * A132638 A046882 A165812
KEYWORD
nonn
AUTHOR
Rick L. Shepherd, Aug 02 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 02:28 EDT 2024. Contains 371782 sequences. (Running on oeis4.)