OFFSET
1,2
COMMENTS
REFERENCES
Ronald L. Graham, Donald E. Knuth and Oren Patashnik, Concrete Mathematics, 6th printing with corrections. Addison-Wesley, Reading, MA, p. 478 and p. 571, 1990.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..69
Eric Weisstein's World of Mathematics, Fibonorial
FORMULA
a(n) = Product_{i=1..n} F(2*i-1), where F(n) = A000045(n).
a(n) = A123029(2*n-1).
a(n+1)/a(n) = A001519(n+1).
a(0) = 1 by convention since empty products equal 1. - Michael Somos, Oct 07 2014
a(-n) = 1/a(n) for all n in Z. - Michael Somos, Oct 07 2014
0 = a(n)*(+a(n+1)*a(n+3) - 3*a(n+2)^2) + a(n+2)*(+a(n+1)^2) for all n in Z. - Michael Somos, Oct 07 2014
(F(1) + i)(F(3) + i)...(F(2n+1) + i) = a(n)(1 + F(2n+2)i) and (F(2n+1) + i)(1 + F(2n)i) = F(2n-1)(1 + F(2n+2)i) for all n in Z. - Michael Somos, Sep 16 2023
EXAMPLE
G.f. = 1 + x + 2*x^2 + 10*x^3 + 130*x^4 + 4420*x^5 + 393380*x^6 + 91657540*x^7 + ...
MAPLE
MATHEMATICA
Table[Product[Fibonacci[2*k - 1], {k, 1, n}], {n, 1, 30}] (* G. C. Greubel, Aug 13 2018 *)
PROG
(PARI) {a(n) = if( n<0, 1 / a(-n), prod(k=1, n, fibonacci(2*k - 1)))}; /* Michael Somos, Oct 07 2014 */
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Johannes W. Meijer, Aug 21 2011
STATUS
approved