OFFSET
1,4
COMMENTS
The Hankel determinant of order n of a sequence (s_n) is the determinant of the n X n matrix where the first row is [s_0, s_1, ..., s_{n-1}] and successive rows are shifted-by-one "windows" of size n into the sequence (so the last row is [s_{n-1}, ..., s_{2n-2}]).
LINKS
Robert Israel, Table of n, a(n) for n = 1..500
Min Niu and Miaomiao Li, On the irrationality exponent of the generating function for a class of integer sequences, Chaos, Solitons and Fractals 81 (2015) 203-207.
MAPLE
A189718:= [0]:
seq(LinearAlgebra:-Determinant(Matrix(n, n, (i, j) -> A189718[i+j-1])), n = 1 .. (3^5+1)/2); # Robert Israel, Nov 20 2015
CROSSREFS
KEYWORD
sign
AUTHOR
Jeffrey Shallit, Nov 19 2015
STATUS
approved