[go: up one dir, main page]

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!)
A052685 Expansion of e.g.f. (1-x^2)/(1-x-2*x^2+x^4). 1
1, 1, 4, 24, 168, 1680, 18720, 252000, 3830400, 65681280, 1251936000, 26225337600, 599710003200, 14851444608000, 396138155212800, 11320537003776000, 345079573622784000, 11176410365632512000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: (1 - x^2)/(1 - x - 2*x^2 + x^4).
D-finite recurrence: a(0)=1, a(1)=1, a(2)=4, a(3)=24, a(n) = n*a(n-1) + 2*n*(n-1)*a(n-2) - n*(n-1)*(n-2)*(n-3)*a(n-4).
a(n) = (n!/283)*Sum_{alpha=RootOf(1-z-2*Z^2+Z^4)} (27 + 112*alpha + 9*alpha^2 - 48*alpha^3)*alpha^(-1-n).
a(n) = n!*A052535(n). - R. J. Mathar, Nov 27 2011
MAPLE
spec := [S, {S=Sequence(Prod(Z, Union(Z, Sequence(Prod(Z, Z)))))}, labeled]: seq(combstruct[count](spec, size=n), n=0..20);
MATHEMATICA
b[n_]:= b[n]= If[n<4, n!-2*Boole[n==3], b[n-1] +2*b[n-2] -b[n-4]]; (* b=A052535 *)
A052685[n_]:= n!*b[n];
Table[A052685[n], {n, 0, 40}] (* G. C. Greubel, Jun 03 2022 *)
With[{nn=20}, CoefficientList[Series[(1-x^2)/(1-x-2 x^2+x^4), {x, 0, nn}], x] Range[0, nn]!]
PROG
(Magma) R<x>:=PowerSeriesRing(Rationals(), 40); Coefficients(R!(Laplace( (1-x^2)/(1-x-2*x^2+x^4) ))); // G. C. Greubel, Jun 03 2022
(SageMath)
@CachedFunction
def b(n): # b = A052535
if (n<4): return factorial(n) - 2*bool(n==3)
else: return b(n-1) + 2*b(n-2) - b(n-4)
def A052685(n): return factorial(n)*b(n)
[A052685(n) for n in (0..40)] # G. C. Greubel, Jun 03 2022
CROSSREFS
Sequence in context: A246423 A188913 A364324 * A374659 A221088 A365225
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 August 30 17:11 EDT 2024. Contains 375545 sequences. (Running on oeis4.)