login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A271938
a(1) = 1, a(2) = 3, a(n) = a(n-1)^a(n-2).
0
1, 3, 3, 27, 19683, 87189642485960958202911070585860771696964072404731750085525219437990967093723439943475549906831683116791055225665627
OFFSET
1,2
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 *)
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).
Sequence in context: A369013 A215829 A098340 * A075020 A138962 A139206
KEYWORD
nonn
AUTHOR
Natan Arie Consigli, Apr 17 2016
STATUS
approved