OFFSET
1,4
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..11026, rows 1 <= n <= 150.
Matthew Blair, Rigoberto Flórez, and Antara Mukherjee, Matrices in the Hosoya triangle, arXiv:1808.05278 [math.CO], 2018.
Rigoberto Florez, R. Higuita and L. Junes, GCD property of the generalized star of David in the generalized Hosoya triangle, J. Integer Seq., 17 (2014), Article 14.3.6, 17 pp.
Rigoberto Florez and L. Junes, GCD properties in Hosoya's triangle, Fibonacci Quart. 50 (2012), 163-174.
H. Hosoya, Fibonacci Triangle, The Fibonacci Quarterly, 14;2, 1976, 173-178.
Wikipedia, Hosoya triangle
EXAMPLE
Triangle begins:
1;
1, 1;
3, 1, 3;
5, 3, 3, 5;
11, 5, 9, 5, 11;
21, 11, 15, 15, 11, 21;
...
MATHEMATICA
With[{s = Array[(2^# - (-1)^#)/3 &, 150, 0]}, Table[s[[k]] s[[n - k + 1]], {n, Length@ s}, {k, 2, n - 1}]] // Flatten (* Michael De Vlieger, Nov 14 2018, after Joseph Biberstine at A001045 *)
PROG
(PARI) a(n) = if(n<2, n, a(n - 1) + 2*a(n - 2));
for(n=0, 15, for(k=1, n, print1(a(k) * a(n - k + 1), ", "); ); print(); ); \\ Indranil Ghosh, Mar 29 2017
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Rigoberto Florez, Mar 20 2017
STATUS
approved