A090241 a(n) = F(n)^F(n+1), where F is the Fibonacci sequence A000045.
0, 1, 1, 8, 243, 390625, 549755813888, 247064529073450392704413, 902518308877795191433240103403256374623457081, 1703493329567268465942478062534694113318852014472240119495402716475481522933726183424
Offset: 0
Examples
a(3) = 2^3 = 8.
Programs
-
Mathematica
#[[1]]^#[[2]]&/@Partition[Fibonacci[Range[0,10]],2,1] (* Harvey P. Dale, Jun 01 2022 *)