login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A111425
a(n) = tribonacci(Fibonacci(n)).
2
0, 0, 0, 1, 1, 4, 24, 504, 66012, 181997601, 65720971788709, 65431225571591367370292, 23523635785731871586396890786299881280, 8419860898569880503664421048610377961601349941695806840602396
OFFSET
0,6
LINKS
FORMULA
a(n) = A000073(A000045(n)).
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
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Nov 13 2005
STATUS
approved