OFFSET
0,2
COMMENTS
Next term (unconfirmed): a(6)=409. If started with the empty square at mid-side of a boundary, the number of configurations reachable in the first floor((n-1)/2) moves in an n X n sliding block puzzle are given by this sequence.
PROG
(Python) # uses alst(), swap() in A089473
nn = 24
mid = (nn-1)//2
startlst = [chr(i) for i in range(45, 45+nn**2)] # chr(45) is "-"
startlst[0], startlst[mid] = startlst[mid], startlst[0]
start = "".join(startlst)
print(alst(start, (nn, nn), maxd=mid)) # Michael S. Branicky, Jan 02 2021
CROSSREFS
KEYWORD
more,nonn
AUTHOR
Hugo Pfoertner, Nov 27 2003
EXTENSIONS
a(6) confirmed and a(7)-a(15) from Michael S. Branicky, Dec 28 2020
STATUS
approved