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!)
A052592 E.g.f. (1-x)/(1-4x). 0
1, 3, 24, 288, 4608, 92160, 2211840, 61931520, 1981808640, 71345111040, 2853804441600, 125567395430400, 6027234980659200, 313416218994278400, 17551308263679590400, 1053078495820775424000, 67397023732529627136000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: (-1+x)/(-1+4*x).
Recurrence: {a(0)=1, a(1)=3, (-4-4*n)*a(n) + a(n+1)=0}.
a(n) = 3*4^(n-1)*n!, n>0.
MAPLE
spec := [S, {S=Sequence(Prod(Sequence(Z), Union(Z, Z, Z)))}, labeled]: seq(combstruct[count](spec, size=n), n=0..20);
MATHEMATICA
s=3; lst={1, s}; Do[s+=n*s+s; AppendTo[lst, s], {n, 6, 5!, 4}]; lst (* Vladimir Joseph Stephan Orlovsky, Nov 08 2008 *)
With[{nn=20}, CoefficientList[Series[(1-x)/(1-4x), {x, 0, nn}], x] Range[ 0, nn]!] (* Harvey P. Dale, Nov 26 2011 *)
PROG
(PARI) Vec(serlaplace((-1+x)/(-1+4*x)+ O(x^30))) \\ Michel Marcus, Jan 09 2015
CROSSREFS
Sequence in context: A064037 A257453 A128572 * A059381 A301933 A337027
KEYWORD
easy,nonn
AUTHOR
encyclopedia(AT)pommard.inria.fr, Jan 25 2000
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 May 8 14:56 EDT 2024. Contains 372338 sequences. (Running on oeis4.)