OFFSET
0,3
COMMENTS
Problem A6 on the 2024 William Lowell Putnam Mathematical Competition was to compute the Hankel transform of this sequence, which is A110147.
LINKS
Nathaniel Johnston, Determinant involving (1 - 3x - sqrt(1 - 14x + 9x^2))/4, YouTube video, 2024.
Nathaniel Johnston, Putnam 2024 A6 solution, 2024.
FORMULA
a(0) = 0, a(1) = 1, a(n) = 3*a(n-1) + 2*Sum_{k=0..n} a(k)*a(n-k) for n >= 2.
G.f.: (1-3*x-sqrt(9*x^2-14*x+1))/4.
PROG
(MATLAB) a = 3; b = 2; c(1) = 1; last_val = 16; for j = 2:last_val
c(j) = a*c(j-1) + b*sum(c(1:j-1).*fliplr(c(1:j-1)));
end
(PARI) my(x='x+O('x^33)); concat([0], Vec((1-3*x-sqrt(9*x^2-14*x+1))/4)) \\ Joerg Arndt, Dec 15 2024
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Nathaniel Johnston, Dec 15 2024
STATUS
approved