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!)
A165429 a(1) = 1; a(n) = (Sum_{i=1..n-1} a(i))^n for n >= 2. 1
1, 1, 8, 10000, 100501001000500100000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
a(6) has 120 digits (1006016...1000000).
LINKS
EXAMPLE
a(4) = (a(1) + a(2) + a(3))^4 = (1 + 1 + 8)^4 = 10^4 = 10000.
MATHEMATICA
a[1]:= 1; a[n_]:= (Sum[a[j], {j, 1, n-1}])^n; Table[a[n], {n, 1, 7}] (* G. C. Greubel, Oct 19 2018 *)
PROG
(PARI) {a(n) = if(n==1, 1, (sum(j=1, n-1, a(j)))^n)};
for(n=1, 7, print1(a(n), ", ")) \\ G. C. Greubel, Oct 19 2018
CROSSREFS
Sequence in context: A055308 A188890 A175881 * A343475 A242852 A079235
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Sep 17 2009
EXTENSIONS
Edited by N. J. A. Sloane, Oct 15 2009
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 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)