OFFSET
0,3
COMMENTS
The Hankel transform of A000045 has the following polynomial as g.f. 1 + x + x^2: the matrices are singular for n > 2.
LINKS
N. J. A. Sloane, Transforms.
EXAMPLE
a(3) = 44:
[1 1 2]
[1 2 3]
[2 3 5]
MATHEMATICA
a[0]=1; a[n_]:=Permanent[Table[Fibonacci[i+j-1], {i, 1, n}, {j, 1, n}]]; Array[a, 15, 0]
PROG
(PARI) a(n) = matpermanent(matrix(n, n, i, j, fibonacci(i+j-1))); \\ Michel Marcus, Mar 19 2026
CROSSREFS
KEYWORD
nonn
AUTHOR
Stefano Spezia, Mar 14 2026
STATUS
approved
