cp's OEIS Frontend

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.

A260916 Expansion of Product_{k>=1} ((1+x^k)/(1-x^k))^(Fibonacci(k)).

Original entry on oeis.org

1, 2, 4, 10, 22, 48, 104, 220, 460, 954, 1956, 3976, 8026, 16084, 32032, 63440, 124974, 245008, 478204, 929452, 1799508, 3471396, 6673724, 12788976, 24433528, 46546738, 88432264, 167575474, 316768948, 597389576, 1124092476, 2110661644, 3955006820, 7396477224
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 18 2015

Keywords

Comments

Convolution of A166861 and A261050.

Crossrefs

Programs

  • Mathematica
    nmax = 40; CoefficientList[Series[Product[((1+x^k)/(1-x^k))^Fibonacci[k], {k, 1, nmax}], {x, 0, nmax}], x]

Formula

a(n) ~ phi^n / (2^(3/4) * 5^(1/8) * sqrt(Pi) * n^(3/4)) * exp(-1/5 + 2*5^(-1/4)*sqrt(2*n) + s), where s = 2 * Sum_{k>=1} phi^(2*k+1) / ((phi^(4*k+2) - phi^(2*k+1) - 1)*(2*k+1)) = 0.276751423987223411719438512082359840225908317... and phi = A001622 = (1+sqrt(5))/2 is the golden ratio.