A302349 a(n) = F_n(n,n), where F is the Clenshaw-Olver hyper-operation hierarchy.
1, 2, 4, 9, 13407807929942597099574024998205846127479365820592393377723561443721764030073546976801874298166903427690031858186486050853753882811946569946433649006084096
Offset: 0
Keywords
Examples
F_0(0,0) = 0+1 = 1; F_1(1,1) = 1+1 = 2; F_2(2,2) = 2*2 = 4; F_3(a,b) = 3^3 = 9; F_4(a,b) = 4[4](4-1) = 4^4^4 = ...
Links
- C. W. Clenshaw and F. W. J. Olver, Beyond floating point, Journal of the ACM. 31 (2) April 1984, pp. 319-328.
Formula
F_1(a,b) = a+b;
F_2(a,b) = ab;
F_3(a,b) = a^b;
F_4(a,b) = a[4](b-1).
a[n]b is the square bracket notation for hyper-operation. See A054871 for details.
Comments