A090242 a(n) = F(n)^F(n-1), where F is the Fibonacci sequence A000045.
0, 1, 1, 2, 9, 125, 32768, 815730721, 154472377739119461, 144896287389534090178492559785984, 148707010444932320126692907511838968493975698947906494140625, 164607782908174441344270105333730757465593941470198419854718194253607242940724175602015628380155976898641449
Offset: 0
Examples
a(5) = 5^3 = 125.
Programs
-
Mathematica
Last[#]^First[#]&/@Partition[Fibonacci[Range[-1,12]],2,1] (* Harvey P. Dale, Apr 16 2011 *)
Extensions
Edited by N. J. A. Sloane, Sep 19 2007