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!)
A052568 E.g.f.: (1-x)/(1-3*x+x^2). 2

%I #32 Sep 08 2022 08:44:59

%S 1,2,10,78,816,10680,167760,3074400,64391040,1517201280,39720844800,

%T 1143895737600,35937095040000,1223098971494400,44829605505484800,

%U 1760481463732992000,73744004937867264000,3282093293695856640000

%N E.g.f.: (1-x)/(1-3*x+x^2).

%C Laguerre transform of n!Fibonacci(n+1), A005442. - _Paul Barry_, Aug 08 2008

%H G. C. Greubel, <a href="/A052568/b052568.txt">Table of n, a(n) for n = 0..385</a>

%H INRIA Algorithms Project, <a href="http://ecs.inria.fr/services/structure?nbr=510">Encyclopedia of Combinatorial Structures 510</a>

%F Recurrence: {a(0)=1, a(1)=2, (n^2+3*n+2)*a(n)+(-6-3*n)*a(n+1)+a(n+2)=0.}

%F a(n) = Sum(1/5*(1+_alpha)*_alpha^(-1-n), _alpha=RootOf(_Z^2-3*_Z+1))*n!.

%F a(n) = Sum_{k=0..n} binomial(n,k)(n!/k!)*k!Fibonacci(k+1). - _Paul Barry_, Aug 08 2008

%F a(n) = n!*A122367(n). - _R. J. Mathar_, Nov 27 2011

%p spec := [S,{S=Sequence(Union(Z,Prod(Z,Sequence(Z))))},labeled]: seq(combstruct[count](spec,size=n), n=0..20);

%p a:= n-> n! * (Matrix([[1,1]]). Matrix([[3,1], [ -1,0]])^n)[1,1]: seq(a(n), n=0..20); # _Alois P. Heinz_, Jun 01 2009

%t With[{nn=20},CoefficientList[Series[(1-x)/(1-3x+x^2),{x,0,nn}],x] Range[0,nn]!] (* _Harvey P. Dale_, May 07 2012 *)

%t Table[Fibonacci[2n+1] n!, {n, 0, 20}] (* _Vladimir Reshetnikov_, Oct 29 2015 *)

%o (PARI) x='x+O('x^30); Vec(serlaplace((1-x)/(1-3*x+x^2))) \\ _G. C. Greubel_, May 23 2018

%o (Magma) m:=25; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!((1-x)/(1-3*x+x^2))); [Factorial(n-1)*b[n]: n in [1..m]]; // _G. C. Greubel_, May 23 2018

%Y Apart from signs, row sums of A079461.

%Y Cf. A005442, A122367.

%K easy,nonn

%O 0,2

%A encyclopedia(AT)pommard.inria.fr, Jan 25 2000

%E Edited by _N. J. A. Sloane_, May 29 2009

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 19 14:10 EDT 2024. Contains 371792 sequences. (Running on oeis4.)