A191994 (Sum of first n Fibonacci numbers) times (product of first n Fibonacci numbers).
1, 2, 8, 42, 360, 4800, 102960, 3538080, 196035840, 17520703200, 2529842515200, 590412901478400, 222813349683724800, 136001024583142118400, 134285149587387262464000, 214504624277084224347264000, 554361997358383529330695680000
Offset: 1
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..97
- Eric Weisstein's World of Mathematics, Fibonacci Factorial Constant
Crossrefs
Programs
-
PARI
s=0;p=1;for(n=1,40,f=fibonacci(n);s+=f;p*=f;print1(s*p", ")) \\ Charles R Greathouse IV, Jun 21 2011
-
PARI
a(n)=prod(k=1,n,fibonacci(k))*(fibonacci(n+2)-1) /* Franklin T. Adams-Watters, Jun 23 2011 */
Formula
a(n) ~ C*sqrt(phi^(n^2 + 3*n + 4)/5^(n+1)) where C = A062073 and phi = (1+sqrt(5))/2.
a(n) = (F(n+2)-1) * Product_{k=1..n} F(k). - Franklin T. Adams-Watters, Jun 23 2011
Comments