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!)
A205968 a(n) = Fibonacci(n)*A008655(n) for n >= 1, with a(0)=1, where A008655 lists the coefficients in (theta_3(x)*theta_3(3*x) + theta_2(x)*theta_2(3*x))^4. 5
1, 24, 216, 1776, 5256, 15120, 63936, 107328, 294840, 823344, 1496880, 2845152, 9334656, 12291216, 28012608, 68251680, 110883528, 188343792, 563167296, 688359840, 1493387280, 3343696512, 5095667232, 8368761024, 24087248640, 28361250600, 57633511824, 128471514096 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Compare g.f. to the Lambert series of A008655:
1 + Sum_{n>=1} 24*n^3*x^n/(1-x^n) + 8*(3*n)^3*x^(3*n)/(1-x^(3*n)).
LINKS
FORMULA
G.f.: 1 + Sum_{n>=1} 24*Fibonacci(n)*n^3*x^n/(1 - Lucas(n)*x^n + (-1)^n*x^(2*n)) + 8*Fibonacci(3*n)*(3*n)^3*x^(3*n)/(1 - Lucas(3*n)*x^(3*n) + (-1)^n*x^(6*n)).
EXAMPLE
G.f.: A(x) = 1 + 24*x + 216*x^2 + 1776*x^3 + 5256*x^4 + 15120*x^5 + ...
where A(x) = 1 + 1*24*x + 1*216*x^2 + 2*888*x^3 + 3*1752*x^4 + 5*3024*x^5 + ... + Fibonacci(n)*A008655(n)*x^n + ...
MATHEMATICA
A008655 := CoefficientList[Series[((EllipticTheta[3, 0, q]^3 + EllipticTheta[3, Pi/3, q]^3 + EllipticTheta[3, 2 Pi/3, q]^3)^4/(3* EllipticTheta[3, 0, q^3])^4), {q, 0, 250}], q]; b := Table[A008655[[n]], {n, 1, 120}][[1 ;; ;; 2]]; Join[{1}, Table[Fibonacci[n]*b[[n + 1]], {n, 1, 50}]] (* G. C. Greubel, Jul 16 2018 *)
PROG
(PARI) {Lucas(n)=fibonacci(n-1)+fibonacci(n+1)}
{a(n)=polcoeff(1 + sum(m=1, n, 24*fibonacci(m)*m^3*x^m/(1-Lucas(m)*x^m+(-1)^m*x^(2*m) +x*O(x^n)) + 8*fibonacci(3*m)*(3*m)^3*x^(3*m)/(1-Lucas(3*m)*x^(3*m)+(-1)^m*x^(6*m) +x*O(x^n)) ), n)}
for(n=0, 40, print1(a(n), ", "))
CROSSREFS
Cf. A209448 (Pell variant).
Sequence in context: A008655 A133754 A104670 * A232474 A205816 A138406
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 04 2012
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)