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!)
A141532 Inverse binomial transform of A141425. 2
1, 1, 1, -2, 4, -8, 7, 22, -125, 376, -878, 1756, -3143, 5188, -8189, 13102, -22928, 45856, -101549, 232618, -524285, 1137148, -2362874, 4725748, -9185771, 17574376, -33554429, 64717378, -127043276, 254086552, -515347553, 1052218462, -2147483645 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
This is the inverse binomial transform of A141425 if interpreted with offset 0.
LINKS
FORMULA
G.f.: (1 +7*x +22*x^2 +39*x^3 +42*x^4 +27*x^5)/((1+x+x^2)*(1+3*x+3*x^2)*(1+2*x)). - R. J. Mathar, Nov 11 2008
From G. C. Greubel, Mar 30 2021: (Start)
a(n) = (9/2)*[n=0] + (-2)^(n-1) - (3/2)*( ChebyshevU(n, -1/2) + 2*ChebyshevU(n-1, -1/2) + 3^((n-1)/2)*(sqrt(3)*ChebyshevU(n, -sqrt(3)/2] + 2*ChebyshevU(n-1, -sqrt(3)/2) ).
a(n) = (9/2)*[n=0] + (-2)^(n-1) - (3/2)*(A049347(n) + 2*A049347(n-1) + A000748(n) + 2*A000748(n-1) ). (End)
MATHEMATICA
LinearRecurrence[{-6, -15, -20, -15, -6}, {1, 1, 1, -2, 4, -8}, 40] (* G. C. Greubel, Mar 30 2021 *)
PROG
(Magma) I:=[1, 1, -2, 4, -8]; [1] cat [n le 5 select I[n] else -6*Self(n-1) -15*Self(n-2) -20*Self(n-3) -15*Self(n-4) -6*Self(n-5): n in [1..40]]; // G. C. Greubel, Mar 30 2021
(Sage)
def A141532_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( (1 +7*x +22*x^2 +39*x^3 +42*x^4 +27*x^5)/((1+x+x^2)*(1+3*x+3*x^2)*(1+2*x)) ).list()
A141532_list(40) # G. C. Greubel, Mar 30 2021
CROSSREFS
Sequence in context: A258096 A261298 A133007 * A197000 A198428 A365251
KEYWORD
sign
AUTHOR
Paul Curtz, Aug 12 2008
EXTENSIONS
Extended by R. J. Mathar, Nov 11 2008
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 April 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)