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!)
A055142 Expansion of e.g.f.: exp(x)*sqrt(1-2x). 5
1, 0, -2, -8, -36, -224, -1880, -19872, -251888, -3712256, -62286624, -1171487360, -24402416192, -557542291968, -13861636770176, -372514645389824, -10759590258589440, -332386419622387712 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ -2^(n-1/2) * n^(n-1) / exp(n-1/2). - Vaclav Kotesovec, Mar 29 2014
D-finite with recurrence: a(n) +2*(-n+1)*a(n-1) +2*(n-1)*a(n-2)=0. - R. J. Mathar, Jan 22 2020
MATHEMATICA
CoefficientList[Series[E^x*Sqrt[1-2*x], {x, 0, 20}], x] * Range[0, 20]! (* Vaclav Kotesovec, Mar 29 2014 *)
PROG
(Sage)
def A055142(n):
@CachedFunction
def h(n):
return (-1)^n*2*(n-2)*abs(h(n-1)+h(n-2)) if n>1 else 1
return -(-1)^(n+1)*h(n+1)
[A055142(n) for n in (0..17)] # Peter Luschny, Nov 02 2012
CROSSREFS
Column 0 of triangle A055141.
Sequence in context: A233744 A222469 A052618 * A340234 A183908 A280119
KEYWORD
sign
AUTHOR
Christian G. Bower, May 09 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 20 22:00 EDT 2024. Contains 375340 sequences. (Running on oeis4.)