login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A318248 Expansion of Product_{k>=1} (1 + Fibonacci(k)*x^k). 4
1, 1, 1, 3, 5, 10, 18, 35, 63, 123, 220, 411, 750, 1387, 2498, 4649, 8308, 15150, 27446, 49638, 88754, 161280, 287831, 516770, 924956, 1655166, 2944850, 5272056, 9348047, 16631195, 29569572, 52421323, 92665614, 164437988, 290243745, 512649342, 904774082 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
Michael Hendriksen, Nils Kapust, On the comparison of incompatibility of split systems across different taxa sizes, arXiv:2004.00062 [q-bio.PE], 2020.
FORMULA
From Vaclav Kotesovec, Aug 24 2018: (Start)
a(n) ~ c * A000045(n) * exp(r*sqrt(n)) / n^(3/4) ~ c * exp(r*sqrt(n)) * phi^n / (sqrt(5) * n^(3/4)), where r = 2*sqrt(-polylog(2, -1/sqrt(5))) = 1.273105657580344020952907652385896290122122879833..., c = 0.4521555113342405268628694407039776... and phi = A001622 = (1+sqrt(5))/2 is the golden ratio.
Equivalently, r = 2*sqrt(Pi^2/6 + log(5)^2/8 + polylog(2, -sqrt(5))). (End)
MATHEMATICA
nmax = 50; CoefficientList[Series[Product[1 + Fibonacci[k]*x^k, {k, 1, nmax}], {x, 0, nmax}], x]
nmax = 50; poly = ConstantArray[0, nmax + 1]; poly[[1]] = 1; poly[[2]] = 1; Do[Do[poly[[j + 1]] += Fibonacci[k]*poly[[j - k + 1]], {j, nmax, k, -1}]; , {k, 2, nmax}]; poly
CROSSREFS
Sequence in context: A356507 A094986 A154949 * A107232 A134522 A001445
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Aug 22 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 16:22 EDT 2024. Contains 371780 sequences. (Running on oeis4.)