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.

A090241 a(n) = F(n)^F(n+1), where F is the Fibonacci sequence A000045.

Original entry on oeis.org

0, 1, 1, 8, 243, 390625, 549755813888, 247064529073450392704413, 902518308877795191433240103403256374623457081, 1703493329567268465942478062534694113318852014472240119495402716475481522933726183424
Offset: 0

Views

Author

Felix Tubiana, Jan 23 2004

Keywords

Examples

			a(3) = 2^3 = 8.
		

Crossrefs

Programs

  • Mathematica
    #[[1]]^#[[2]]&/@Partition[Fibonacci[Range[0,10]],2,1] (* Harvey P. Dale, Jun 01 2022 *)