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.

A265944 Absolute value of the determinant of the matrix whose terms are fibonacci(m+r+s)^(n) with 0 <= r, s <=n, for any m.

Original entry on oeis.org

1, 2, 36, 13824, 324000000, 1209323520000000, 1923567501916569600000000, 3436011282355888738787131392000000000, 18204541483393435808637499286914987185930240000000000, 753091424970084722185225494963366011108371967508480000000000000000000000
Offset: 1

Views

Author

Michel Marcus, Dec 23 2015

Keywords

Crossrefs

Programs

  • PARI
    a(n) = prod(j=0, n, binomial(n, j)) * prod(j=1,n, fibonacci(j)^(n-j+1))^2;

Formula

a(n) = (Product_{j=0..n} binomial(n,j)) * (Product_{j=1..n} fibonacci(j)^(n-j+1))^2.
a(n) = A001142(n)*A152686(n)^2.