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!)
A073390 Third convolution of A002605(n) (generalized (2,2)-Fibonacci), n >= 0, with itself. 3

%I #27 Oct 04 2022 08:38:08

%S 1,8,48,240,1080,4512,17856,67776,248880,889600,3109376,10664448,

%T 35989248,119761920,393676800,1280157696,4122985728,13165099008,

%U 41713192960,131243970560,410315433984,1275348344832

%N Third convolution of A002605(n) (generalized (2,2)-Fibonacci), n >= 0, with itself.

%H Muniru A Asiru, <a href="/A073390/b073390.txt">Table of n, a(n) for n = 0..500</a>

%H <a href="/index/Rec#order_08">Index entries for linear recurrences with constant coefficients</a>, signature (8,-16,-16,56,32,-64,-64,-16).

%F a(n) = Sum_{k=0..n} b(k)*c(n-k) with b(k) = A002605(k) and c(k) = A073389(k).

%F a(n) = Sum_{k=0..floor(n/2)} binomial(n-k+3, 3)*binomial(n-k, k)*2^(n-k).

%F a(n) = ((64 + 37*n + 5*n^2)*(n+1)*U(n+1) + 4*(11 + 7*n + n^2)*(n+2)*U(n))/(6^3), with U(n) = A002605(n), n >= 0.

%F G.f.: 1/(1-2*x*(1+x))^4.

%t CoefficientList[Series[1/(1-2*x-2*x^2)^4, {x,0,40}], x] (* _G. C. Greubel_, Oct 03 2022 *)

%o (GAP) List([0..25], n->2^n*Sum([0..Int(n/2)],k->Binomial(n-k+3,3)*Binomial(n-k,k)*(1/2)^k)); # _Muniru A Asiru_, Jun 12 2018

%o (Magma) R<x>:=PowerSeriesRing(Integers(), 40); Coefficients(R!( 1/(1-2*x-2*x^2)^4 )); // _G. C. Greubel_, Oct 03 2022

%o (SageMath)

%o def A073390_list(prec):

%o P.<x> = PowerSeriesRing(ZZ, prec)

%o return P( 1/(1-2*x-2*x^2)^4 ).list()

%o A073390_list(40) # _G. C. Greubel_, Oct 03 2022

%Y Fourth (m=3) column of triangle A073387.

%Y Cf. A002605, A073389.

%K nonn,easy

%O 0,2

%A _Wolfdieter Lang_, Aug 02 2002

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 23 11:35 EDT 2024. Contains 371912 sequences. (Running on oeis4.)