login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A350349 Lexicographically earliest increasing sequence of positive integers such that the Hankel matrix of any odd number of consecutive terms is invertible. 3
1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 14, 15, 16, 17, 19, 20, 21, 22, 25, 26, 27, 28, 30, 31, 32, 33, 35, 36, 38, 39, 42, 43, 44, 45, 47, 48, 49, 50, 52, 53, 55, 56, 57, 58, 60, 61, 62, 63, 66, 67, 68, 69, 71, 72, 73, 74, 76, 77, 80, 81, 82, 83, 85, 86, 87, 88, 90 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Wikipedia, Hankel matrix
PROG
(Python)
from sympy import Matrix
from itertools import count
def A350349_list(nmax):
a=[1]
for n in range(1, nmax):
a.append(next(k for k in count(a[-1]+1) if all(Matrix((n-r)//2+1, (n-r)//2+1, lambda i, j:(a[r:]+[k])[i+j]).det()!=0 for r in range(n-2, -1, -2))))
return a
CROSSREFS
Sequence in context: A119930 A173552 A188010 * A008320 A004439 A050126
KEYWORD
nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)