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”).

A264932
a(1) = 1, a(2) = 3, a(n)= H_4(a(n-1),a(n-2)).
1
1, 3, 3, 7625597484987
OFFSET
1,2
COMMENTS
See A054871 for definitions and key links.
Possible other sequence with the same 4 entries:
a(1)=1;
a(2)= 3;
a(n)=a(n-1)^a(n-2)^a(n-2);
MATHEMATICA
RecurrenceTable[{a[1]==1, a[2]==3, a[n]==a[n-1]^a[n-2]^a[n-2]}, a, {n, 4}] (* Vincenzo Librandi, Dec 17 2015 *)
PROG
(Magma) I:=[1, 3]; [n le 2 select I[n] else Self(n-1)^Self(n-2)^Self(n-2): n in [1..5]]; // Vincenzo Librandi, Dec 17 2015
CROSSREFS
Sequence in context: A076253 A081174 A292832 * A171604 A132139 A045951
KEYWORD
nonn
AUTHOR
Natan Arie Consigli, Dec 16 2015
STATUS
approved