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.

A111425 a(n) = tribonacci(Fibonacci(n)).

Original entry on oeis.org

0, 0, 0, 1, 1, 4, 24, 504, 66012, 181997601, 65720971788709, 65431225571591367370292, 23523635785731871586396890786299881280, 8419860898569880503664421048610377961601349941695806840602396
Offset: 0

Views

Author

Jonathan Vos Post, Nov 13 2005

Keywords

Crossrefs

Programs

  • Maple
    a:= n-> (<<0|1|0>, <0|0|1>, <1|1|1>>^((<<0|1>, <1|1>>^n)[1, 2]))[1, 3]:
    seq(a(n), n=0..14);  # Alois P. Heinz, Aug 09 2018

Formula

a(n) = A000073(A000045(n)).