Is there recurrence relation for combinatorial objects which have root on right-hand side? I found that formula for problem in this question is of such type and want to find similar formulas and methods to obtain them and corresponding area of combinatorics. Example of triangle of numbers (from simple variant of mentioned question):
[1]
[1, 4]
[1, 9, 16]
[1, 16, 49, 64]
[1, 25, 121, 225, 256]
[1, 36, 256, 676, 961, 1024]
In it $A[x][y] = A[x-1][y-1] + A[x-1][y] + 2*\sqrt{A[x-1][y-1] * A[x-1][y]}$