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!)
A106541 a(n) = a(n-1) - 2*a(n-2) - 3*a(n-3) - ... - (n-1)*a(1), with a(1) = a(2) = 2, a(3) = -2. 3
2, 2, -2, -12, -22, -10, 56, 174, 222, -92, -1038, -2210, -1624, 4102, 16006, 24260, 954, -86426, -215528, -212546, 267150, 1433124, 2538530, 984270, -6873592, -20465066, -25058698, 13402052, 124569514, 256580886, 173699192, -512667826, -1893337666 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = a(n-1) - Sum_{k=2..n-1} k*a(n-k), with a(1) = a(2) = 2, a(3) = -2.
a(n) = 2*A106540(n).
From Colin Barker, Aug 25 2016: (Start)
a(n) = 3*a(n-1) - 5*a(n-2) + 2*a(n-3) for n>3.
G.f.: 2*x*(1-x)^2/(1-3*x+5*x^2-2*x^3). (End)
MATHEMATICA
lst={2, 2, -2}; f[n_]:=With[{c=(Times@@@Thread[{lst, Range[Length[lst], 1, -1]}])}, Last[c]- Total[Most[c]]]; Do[AppendTo[lst, f[lst]], {40}]; lst (* Harvey P. Dale, Apr 17 2012 *)
PROG
(Magma) I:=[2, 2, -2]; [n le 3 select I[n] else 3*Self(n-1) - 5*Self(n-2) + 2*Self(n-3): n in [1..41]]; // G. C. Greubel, Sep 03 2021
(Sage)
def A106541_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( 2*x*(1-x)^2/(1-3*x+5*x^2-2*x^3) ).list()
a=A106541_list(41); a[1:] # G. C. Greubel, Sep 03 2021
CROSSREFS
Sequence in context: A335986 A152662 A135322 * A077945 A077991 A336491
KEYWORD
easy,sign
AUTHOR
Alexandre Wajnberg, May 08 2005
EXTENSIONS
More terms from Harvey P. Dale, Apr 17 2012
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)