OFFSET
1,2
COMMENTS
Terms with odd number of digits are the same as in A219324.
LINKS
Max Alekseyev, Table of n, a(n) for n = 1..53 (complete up to 10^10)
EXAMPLE
| 7 4 5 1 |
1547 = det | 1 7 4 5 |
| 5 1 7 4 |
| 4 5 1 7 |
PROG
(Python)
from sympy import Matrix
A219326_list = []
for n in range(1, 10**6):
s = [int(d) for d in str(n)][::-1]
m = len(s)
if n == Matrix(m, m, lambda i, j: s[(i-j) % m]).det():
A219326_list.append(n) # Chai Wah Wu, Oct 18 2021
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Max Alekseyev, Nov 17 2012
STATUS
approved