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.

A110131 Determinant of n X n matrix M_{i,j} = 2^i*P_i(j), where P_i(j) is the Legendre polynomial of order i at j and i and j are 0-based.

Original entry on oeis.org

1, 2, 24, 2880, 4838400, 146313216000, 97339256340480000, 1683704371913057894400000, 873705178746128941669416960000000, 15414977576506278044562764045746176000000000, 10334857226047177887548812577909403133201612800000000000
Offset: 1

Views

Author

Paul Barry, Jul 13 2005

Keywords

Crossrefs

Programs

Formula

a(n) = 2^n * Product_{k=1..n} (2*k-1)!/(k-1)!.
a(n) = 2^n * A086205(n).
From Alois P. Heinz, Jun 30 2022: (Start)
a(n) = Product_{i=1..n-1} Product_{j=i..n-1} (i+j).
a(n) = A112332(n). (End)