OFFSET
0,3
COMMENTS
1st row is the Fibonacci sequence.
LINKS
G. C. Greubel, Table of n, a(n) for the first 100 antidiagonals, flattened
M. Tetiva, Subsets that make no difference d, Mathematics Magazine 84 (2011), no. 4, 300-301.
FORMULA
T(n,m) = Product_{i=0 to m} F(floor[(n + i)/(m + 1) + 2]) where F(n) is the n-th Fibonacci number.
EXAMPLE
Table begins:
1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...
1, 2, 4, 6, 9, 15, 25, 40, 64, 104, 169, ...
1, 2, 4, 8, 12, 18, 27, 45, 75, 125, 200, ...
1, 2, 4, 8, 16, 24, 36, 54, 81, 135, 225, ...
1, 2, 4, 8, 16, 32, 48, 72, 108, 162, 243, ...
1, 2, 4, 8, 16, 32, 64, 96, 144, 216, 324, ...
1, 2, 4, 8, 16, 32, 64, 128, 192, 288, 432, ...
1, 2, 4, 8, 16, 32, 64, 128, 256, 384, 576, ...
1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 768, ...
1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, ...
1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, ...
................................................
MATHEMATICA
a[n_, m_] := Product[Fibonacci[Floor[(n + i)/(m + 1) + 2]], {i, 0, m}]; Flatten[Table[a[i, j - i], {i, 0, 30}, {j, 0, i}]]
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
David Nacin, Mar 09 2012
STATUS
approved