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”).

A019447
Number of monomials in expansion of determinant of an n X n Toeplitz matrix [ t(|i-j|) ] in terms of its entries.
3
1, 1, 2, 4, 12, 35, 120, 427, 1628, 6090, 23797, 90296, 350726, 1338076, 5165957, 19732508
OFFSET
0,3
MAPLE
with(LinearAlgebra): f:=n->nops([coeffs(Determinant(Matrix(n, (i, j) -> a[abs(i-j)])))]): [seq(f(n), n=0..12)];
MATHEMATICA
f[n_] := Length[ Expand[ Det[ Table[ t[ Abs[ i - j]], {i, 1, n}, {j, 1, n}]]]]; Table[ f[n], {n, 1, 11}]
CROSSREFS
Sequence in context: A148204 A151525 A148205 * A148206 A148207 A331621
KEYWORD
nonn,more,hard
AUTHOR
Herbert S. Wilf
EXTENSIONS
Terms a(12) and a(13) from Thotsaporn Thanatipanonda, Jan 26-28 2012
Terms a(14) and a(15) from Roman Pearce, Aug 30 2014
a(0)=1 prepended by Alois P. Heinz, Feb 25 2024
STATUS
approved