Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)
A370669 Expansion of Sum_{k>=0} k! * ( x/(1+x^2) )^k. 1
1, 1, 2, 5, 20, 103, 630, 4475, 36232, 329341, 3320890, 36787889, 444125628, 5803850515, 81625106990, 1229298774647, 19738870726160, 336627732586105, 6076590994501938, 115752541255203869, 2320456607696181220, 48833227436258924671, 1076420625931284514342 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/2)} (-1)^k * (n-2*k)! * binomial(n-k-1,k).
a(n) = n*a(n-1) + (n-4)*a(n-3) + a(n-4) for n > 4.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(sum(k=0, N, k!*(x/(1+x^2))^k))
(PARI) a(n) = sum(k=0, n\2, (-1)^k*(n-2*k)!*binomial(n-k-1, k));
CROSSREFS
Sequence in context: A323274 A006924 A212580 * A261779 A227096 A152562
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 25 2024
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 18 18:17 EDT 2024. Contains 375273 sequences. (Running on oeis4.)