OFFSET
1,2
COMMENTS
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..68
FORMULA
a(n) = Product_{j=1..n} (F(n+2) - F(j+1)), n>=1.
a(n) ~ c * phi^(n*(n+2)) / 5^(n/2), where c = A276987 = QPochhammer(1/phi) and phi = A001622 = (1+sqrt(5))/2 is the golden ratio. - Vaclav Kotesovec, Mar 31 2021
EXAMPLE
n=3: (5-1)*(5-2)*(5-3) = 4*3*2 = 24;
n=4: (8-1)*(8-2)*(8-3)*(8-5) = 7*6*5*3 = 630.
MAPLE
with(combinat): seq(mul(fibonacci(n+2)-fibonacci(j+1), j = 1..n), n = 1 .. 20); # G. C. Greubel, Aug 10 2019
MATHEMATICA
With[{F=Fibonacci}, Table[Product[F[n+2]-F[j+1], {j, n}], {n, 20}]] (* G. C. Greubel, Aug 10 2019 *)
PROG
(PARI) vector(20, n, f=fibonacci; prod(j=1, n, f(n+2)-f(j+1))) \\ G. C. Greubel, Aug 10 2019
(Magma) F:=Fibonacci; [(&*[F(n+2)-F(j+1): j in [1..n]]): n in [1..20]] // G. C. Greubel, Aug 10 2019
(Sage) f=fibonacci; [prod(f(n+2)-f(j+1) for j in (1..n)) for n in (1..20)] # G. C. Greubel, Aug 10 2019
(GAP) F:=Fibonacci;; List([1..20], n-> Product([1..n], j-> F(n+2) - F(j+1))); # G. C. Greubel, Aug 10 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Oct 13 2006
STATUS
approved