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.

A333125 a(n) = binomial(Fibonacci(n),n).

Original entry on oeis.org

1, 1, 0, 0, 0, 1, 28, 1716, 203490, 52451256, 29248649430, 36519676207704, 103619293824707388, 681222021538453426360, 10526080837282875691177000, 387340445158332035685509830240, 34306348668342682111244774082795555, 7379087300345635546662027722168990277849
Offset: 0

Views

Author

Vaclav Kotesovec, Mar 08 2020, following a suggestion of Andrew Nelson

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Binomial[Fibonacci[n], n], {n, 0, 20}]
  • PARI
    a(n) = binomial(fibonacci(n), n); \\ Michel Marcus, Mar 10 2020

Formula

a(n) ~ phi^(n^2) * exp(n) / (sqrt(2*Pi) * 5^(n/2) * n^(n + 1/2)), where phi = A001622 = (1+sqrt(5))/2 is the golden ratio.