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!)
A306710 a(n) = f_n(0), where f_n is the n-th of all functions that are representable as x^x^...^x with m>=1 x's and parentheses inserted in all possible ways, with conventions that 0^0=1^0=1^1=1, 0^1=0. 5
0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1
COMMENTS
The ordering of the functions f_n is defined in A215703: f_1, f_2, ... = x, x^x, x^(x^2), x^(x^x), x^(x^3), x^(x^x*x), x^(x^(x^2)), x^(x^(x^x)), x^(x^4), x^(x^x*x^2), ... .
LINKS
FORMULA
Sum_{i=A087803(n-1)+1..A087803(n)} a(i) = A222380(n).
Sum_{i=A087803(n-1)+1..A087803(n)} (1-a(i)) = A222379(n).
EXAMPLE
a(1) = f_1(0) = x_{x=0} = 0.
a(2) = f_2(0) = x^x_{x=0} = 0^0 = 1.
a(3) = f_3(0) = x^(x^2)_{x=0} = 0^(0^2) = 0^0 = 1.
a(4) = f_4(0) = x^(x^x)_{x=0} = 0^(0^0) = 0^1 = 0.
MAPLE
T:= proc(n) T(n):=`if`(n=1, [x], map(h-> x^h, g(n-1$2))) end:
g:= proc(n, i) option remember; `if`(i=1, [x^n], [seq(seq(
seq(mul(T(i)[w[t]-t+1], t=1..j)*v, v=g(n-i*j, i-1)), w=
combinat[choose]([$1..nops(T(i))+j-1], j)), j=0..n/i)])
end:
a:= proc() local i, l; i, l:= 0, []; proc(n) while n>nops(l)
do i:= i+1; l:= [l[], subs(x=0, T(i))[]] od; l[n] end
end():
seq(a(n), n=1..120);
CROSSREFS
Partial sums give A306726.
Sequence in context: A000494 A022933 A194683 * A188295 A228039 A163532
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Mar 05 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 May 6 14:25 EDT 2024. Contains 372293 sequences. (Running on oeis4.)