cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A271938 a(1) = 1, a(2) = 3, a(n) = a(n-1)^a(n-2).

Original entry on oeis.org

1, 3, 3, 27, 19683, 87189642485960958202911070585860771696964072404731750085525219437990967093723439943475549906831683116791055225665627
Offset: 1

Views

Author

Natan Arie Consigli, Apr 17 2016

Keywords

Crossrefs

Cf. A264932 with a(n-1)^^a(n-2) or a(n-1)^a(n-2)^a(n-2);
Cf. A051285 (with a(2) = 2).

Programs

  • Mathematica
    a[1] = 1; a[2] = 3; a[n_] := a[n] = a[n - 1]^a[n - 2]; Array[a, {6}] (* Michael De Vlieger, Apr 17 2016 *)
    nxt[{a_,b_}]:={b,b^a}; NestList[nxt,{1,3},5][[;;,1]] (* Harvey P. Dale, Aug 02 2025 *)
Showing 1-1 of 1 results.