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.

A256178 Expansion of exp( Sum_{n >= 1} L(2*n)*L(4*n)*x^n/n ), where L(n) = A000032(n) is a Lucas number.

This page as a plain text file.
%I A256178 #29 Mar 01 2025 08:39:27
%S A256178 1,21,385,6930,124410,2232594,40062659,718896255,12900072515,
%T A256178 231482415780,4153783429236,74536619356836,1337505365115205,
%U A256178 24000559953034665,430672573790340805,7728105768275278134,138675231255170368494
%N A256178 Expansion of exp( Sum_{n >= 1} L(2*n)*L(4*n)*x^n/n ), where L(n) = A000032(n) is a Lucas number.
%C A256178 Let L(n) = A000032(n) denote the n-th Lucas number.
%C A256178 For a fixed positive integer k, the power series expansion of exp( Sum_{n >= 1} L(k*n)x^n/n ) has integer coefficients given by the formula F(k*n)/F(k), where F(n) = A000045(n) [Johnson, 2.22].
%C A256178 The power series expansion of exp( Sum_{n >= 1} L(k*n)*L(2*k*n) *x^n/n ) has integer coefficients given by ( F(k*(n + 1))*F(k*(n + 2))*F(k*(n + 3)) )/( F(k)*F(2*k)*F(3*k) )
%C A256178 The present sequence is the particular case k = 2. See A001655 for the case k = 1.
%H A256178 B. Johnson, <a href="https://web.archive.org/web/20201130211206/http://maths.dur.ac.uk/~dma0rcj/PED/fib.pdf">Fibonacci Identities by Matrix Methods and Generalisation to Related Sequences</a>
%H A256178 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/FibonacciNumber.html">Fibonacci Number</a>
%H A256178 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (21,-56,21,-1).
%F A256178 a(n) = ( F(2*n + 2)*F(2*n + 4)*F(2*n + 6) )/( F(2)*F(4)*F(6) ).
%F A256178 a(n) = (1/8) * Sum_{k = 0..n} F(2*k + 2)*F(6*n - 6*k + 6).
%F A256178 O.g.f.: 1/( (1 - 3*x + x^2)*(1 - 18*x + x^2) ) = 1/8 * Sum_{n >= 0} F(2*n + 2)*x^n * Sum_{n >= 0} F(6*n + 6)*x^n.
%F A256178 O.g.f. also equals exp( Sum_{n >= 1} trace( M^(2*n) + M^(6*n) )*x^n/n ), where M is the 2X2 matrix [ 1, 1; 1, 0 ].
%F A256178 Recurrences: a(n) = 21*a(n-1) - 56*a(n-2) + 21*a(n-3) - a(n-4).
%F A256178 Also a(0) = 1 and for n >= 1, a(n) = (1/n)*Sum_{k = 1..n} L(2*k)*L(4*k)*a(n-k).
%F A256178 From _Peter Bala_, Aug 19 2022: (Start)
%F A256178 Sum_{n >= 0} 1/a(n) = 40/3 - 8*Sum_{n >= 1} 1/F(2*n) = 40/3 - 8*A153386.
%F A256178 Sum_{n >= 0} (-1)^n/a(n) = - 88/3 + 40*Sum_{n >= 1} (-1)^(n+1)/F(2*n). Cf. A265288. (End)
%p A256178 seq((1/24)*fibonacci(2*n+2)*fibonacci(2*n+4)*fibonacci(2*n+6), n = 0 .. 16);
%t A256178 Table[1/8 * Sum[Fibonacci[2*k + 2]*Fibonacci[6*n - 6*k + 6], {k, 0, n}], {n, 0, 17}] (* or *) RecurrenceTable[{a[n] == 21*a[n - 1] - 56*a[n - 2] + 21*a[n - 3] - a[n - 4], a[1] == 1, a[2] == 21, a[3] == 385, a[4] == 6930}, a, {n, 17}] (* _Michael De Vlieger_, Mar 18 2015 *)
%Y A256178 Cf. A000032, A000045, A001655, A010048, A153386, A265288.
%K A256178 nonn,easy
%O A256178 0,2
%A A256178 _Peter Bala_, Mar 18 2015