login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A253268
Product_{k=1..n} Fibonacci(k)^k.
2
1, 1, 8, 648, 2025000, 530841600000, 33309523161907200000, 1259861409934788058133299200000, 76494996113757662751632456649087438028800000, 19375812441937279261781767910157290423127539712000000000000000
OFFSET
1,3
FORMULA
a(n) ~ c * ((1+sqrt(5))/2)^(n*(n+1)*(2*n+1)/6) / 5^(n*(n+1)/4), where c = A253270 = 1.1188674438617789501735355690557711005492672642422237428157122531318... .
MATHEMATICA
Table[Product[Fibonacci[k]^k, {k, 1, n}], {n, 1, 10}]
FoldList[Times, Table[Fibonacci[n]^n, {n, 10}]] (* Harvey P. Dale, Oct 17 2019 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vaclav Kotesovec, May 01 2015
STATUS
approved