A203803 G.f.: exp( Sum_{n>=1} A000204(n)^3 * x^n/n ) where A000204 is the Lucas numbers.
1, 1, 14, 35, 205, 744, 3414, 13926, 60060, 252330, 1072902, 4537272, 19234463, 81452015, 345084970, 1461714517, 6192083147, 26229794928, 111111714300, 470675847900, 1993816532280, 8445939457380, 35777578796220, 151556246864400, 642002579853325, 2719566542567917
Offset: 0
Keywords
Examples
G.f.: A(x) = 1 + x + 14*x^2 + 35*x^3 + 205*x^4 + 744*x^5 + 3414*x^6 +... where log(A(x)) = x + 3^3*x^2/2 + 4^3*x^3/3 + 7^3*x^4/4 + 11^3*x^5/5 + 18^3*x^6/6 + 29^3*x^7/7 + 47^3*x^8/8 +...+ Lucas(n)^3*x^n/n +...
Links
- G. C. Greubel, Table of n, a(n) for n = 0..1500
- Index entries for linear recurrences with constant coefficients, signature (1,13,8,-20,-8,13,-1,-1).
Programs
-
Mathematica
CoefficientList[Series[1/((1 + x - x^2)^3*(1 - 4*x - x^2)), {x, 0, 50}], x] (* G. C. Greubel, Dec 24 2017 *)
-
PARI
/* Subroutine used in PARI programs below: */ {Lucas(n)=fibonacci(n-1)+fibonacci(n+1)}
-
PARI
{a(n)=polcoeff(exp(sum(k=1, n, Lucas(k)^3*x^k/k)+x*O(x^n)), n)}
-
PARI
{a(n,m=1)=polcoeff(prod(k=0,m, 1/(1 - (-1)^(m-k)*Lucas(2*k+1)*x - x^2+x*O(x^n))^binomial(2*m+1,m-k)),n)}
Comments