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.

A182149 a(n) = Fibonacci(n^3).

Original entry on oeis.org

0, 1, 21, 196418, 10610209857723, 59425114757512643212875125, 619220451666590135228675387863297874269396512, 215414832505658809004682396169711233230800418578767753330908886771798637
Offset: 0

Views

Author

Vincenzo Librandi, Jul 07 2012

Keywords

Crossrefs

Programs

  • Magma
    [Fibonacci(n^3): n in [0..10]];
  • Maple
    a:= n-> (<<0|1>, <1|1>>^(n^3))[1,2]:
    seq(a(n), n=0..8);  # Alois P. Heinz, Aug 09 2018
  • Mathematica
    Table[Fibonacci[n^3], {n, 20}]

Formula

a(n) = A000045(A000578(n)).