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!)
A306895 Sum over all partitions of n of the power tower evaluation x^y^...^z, where x, y, ..., z are the parts in (weakly) increasing order. 5
1, 1, 3, 5, 11, 18, 72, 387, 134349386, 115792089237316195423570985008687907853269984665640566457309223244801371506483 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
a(10) has 40403562 decimal digits.
LINKS
Eric Weisstein's World of Mathematics, Power Tower
Wikipedia, Exponentiation
Wikipedia, Identity element
EXAMPLE
a(0) = 1 because the empty partition () has no parts, the exponentiation operator ^ is right-associative, and 1 is the right identity of exponentiation.
a(6) = 1^1^1^1^1^1 + 1^1^1^1^2 + 1^1^2^2 + 2^2^2 + 1^1^1^3 + 1^2^3 + 3^3 + 1^1^4 + 2^4 + 1^5 + 6 = 1 + 1 + 1 + 16 + 1 + 1 + 27 + 1 + 16 + 1 + 6 = 72.
MAPLE
f:= l-> `if`(l=[], 1, l[1]^f(subsop(1=(), l))):
a:= n-> add(f(sort(l, `<`)), l=combinat[partition](n)):
seq(a(n), n=0..9);
CROSSREFS
Sequence in context: A162891 A320351 A319641 * A198519 A045957 A364962
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Mar 15 2019
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 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)