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.

A210343 a(n) = Fibonacci(n+1)^n.

Original entry on oeis.org

1, 1, 4, 27, 625, 32768, 4826809, 1801088541, 1785793904896, 4605366583984375, 31181719929966183601, 552061438912436417593344, 25601832525455335435322705761, 3107689015140868348741078056241817, 987683253336131809511244100000000000000
Offset: 0

Views

Author

Emanuele Munarini, Mar 20 2012

Keywords

Crossrefs

Programs

  • Magma
    [Fibonacci(n+1)^n: n in [0..14]]; // Bruno Berselli, Mar 28 2012
  • Maple
    a:= n-> (<<1|1>, <1|0>>^n)[1,1]^n:
    seq(a(n), n=0..15);  # Alois P. Heinz, Dec 05 2015
  • Mathematica
    Table[Fibonacci[n+1]^n,{n,0,100}]
  • Maxima
    makelist(fib(n+1)^n,n,0,14);