This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A302999 #12 Apr 25 2018 11:56:58 %S A302999 1,1,2,8,56,672,13440,443520,23950080,2107607040,301387806720, %T A302999 69921971159040,26290661155799040,16011012643881615360, %U A302999 15786858466867272744960,25195826113120167300956160,65080818850189392138369761280,272037822793791659138385602150400 %N A302999 a(n) = Product_{k=1..n} (Fibonacci(k+2) - 1). %C A302999 a(n) = determinant of (n + 1) X (n + 1) matrix whose main diagonal consists of the consecutive Fibonacci numbers starting with Fibonacci(2) (1, 2, 3, 5, 8, 13, ...) and all other elements are 1's (see example). %H A302999 Alois P. Heinz, <a href="/A302999/b302999.txt">Table of n, a(n) for n = 0..97</a> %F A302999 a(n) = Product_{k=1..n} A000071(k+2). %F A302999 a(n) = Product_{k=1..n} Sum_{j=1..k} A000045(j). %F A302999 a(n) ~ c * ((1 + sqrt(5))/2)^(n*(n+5)/2) / 5^(n/2), where c = 0.1972502311584232476952451740107000852343536766534965116633336539193... - _Vaclav Kotesovec_, Apr 17 2018 %F A302999 a(n) = A190535(n-3) for n > 3. - _Alois P. Heinz_, Apr 25 2018 %e A302999 The matrix begins: %e A302999 1 1 1 1 1 1 1 1 ... %e A302999 1 2 1 1 1 1 1 1 ... %e A302999 1 1 3 1 1 1 1 1 ... %e A302999 1 1 1 5 1 1 1 1 ... %e A302999 1 1 1 1 8 1 1 1 ... %e A302999 1 1 1 1 1 13 1 1 ... %e A302999 1 1 1 1 1 1 21 1 ... %e A302999 1 1 1 1 1 1 1 34 ... %p A302999 b:= proc(n) b(n):= `if`(n<1, [1$2][], (f-> %p A302999 [f, b(n-1)[2]*(f-1)][])(b(n-1)+b(n-2))) %p A302999 end: %p A302999 a:= n-> b(n)[2]: %p A302999 seq(a(n), n=0..20); # _Alois P. Heinz_, Apr 24 2018 %t A302999 Table[Product[Fibonacci[k + 2] - 1, {k, 1, n}], {n, 0, 17}] %t A302999 Table[Product[Sum[Fibonacci[j], {j, 1, k}], {k, 1, n}], {n, 0, 17}] %t A302999 Table[Det[Table[If[i == j, Fibonacci[i + 1], 1], {i, 1, n + 1}, {j, 1, n + 1}]], {n, 0, 17}] %Y A302999 Cf. A000045, A000071, A003266, A067962, A190535, A194157, A194158, A196870. %K A302999 nonn %O A302999 0,3 %A A302999 _Ilya Gutkovskiy_, Apr 17 2018