The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A254225 a(n) = 2[0]2[1]2...2[n-1]2[n]2 where [n] is the n-th hyperoperator. 4
2, 3, 5, 7, 11, 35 (list; graph; refs; listen; history; text; internal format)
OFFSET
-1,1
COMMENTS
x[n]y = H_n(x,y) is the aggregation of x and y using the n-th hyperoperator. See A054871 for hyperoperator definitions and key links.
In a(-1) no hyperoperator is applied to 2 so a(-1) = 2. For n>0 calculate the chain a(n) = 2[0]2[1]2...2[n-1]2[n]2. Hyperoperators of higher degree have the higher aggregation priority, so tetration before exponentiation, exponentiation before multiplication, multiplication before addition, etc.
LINKS
Wikipedia, Hyperoperation.
FORMULA
a(-1) = 2, a(n) = 2[0]2[1]2...2[n-1]2[n]2.
EXAMPLE
a(-1)= 2;
a(0) = 2[0]2 = '2 = 3;
a(1) = 2[0]2[1]2 = '2+2 = 5;
a(2) = 2[0]2[1]2[2]2 = '2+2*2 = 7;
a(3) = 2[0]2[1]2[2]2[3]2 = '2+2*2^2 = 11;
a(4) = 2[0]2[1]2[2]2[3]2[4]2 = '2+2*2^2^^2 = '2+2*2^4 = 35;
a(5) = 2[0]2[1]2[2]2[3]2[4]2[5]2 = '2+2*2^2^^2^^^2 = '2+2*2^2^^4 = '2+2*2^2^2^2^2 = '2+2*2^65536 = 3+2^65537 > 4.007*10^19728.
PROG
(PARI) f(x, y, o) = {if (o==4, z=x; for (i=1, y-1, z = x^z); return (z)); if (o==3, return(x^y)); if (o==2, return(x*y)); if (o==1, return(x+y)); }
a(n) = {t = 2; if (n>4, return("too big")); if (n==-1, return(t)); v = vector(n+1, k, t); w = vector(n+1, k, n-k+1); x = v[1]; for (k=1, n+1, if (w[k], x = f(v[k+1], x, w[k]), x = x+1); ); x; } \\ Michel Marcus, Jul 29 2015
CROSSREFS
Cf. A000012 (0[0]0[1]...[n]0), A157532 (1[0]1[1]...[n]1), A254310 (3[0]3[1]...[n]3).
Cf. A054871.
Sequence in context: A093487 A067933 A005234 * A334026 A140561 A140553
KEYWORD
nonn
AUTHOR
Natan Arie Consigli, May 03 2015
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 June 9 11:38 EDT 2024. Contains 373239 sequences. (Running on oeis4.)