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!)
A052545 Expansion of (1-x)^2/(1-3*x+x^3). 4
1, 1, 4, 11, 32, 92, 265, 763, 2197, 6326, 18215, 52448, 151018, 434839, 1252069, 3605189, 10380728, 29890115, 86065156, 247814740, 713554105, 2054597159, 5915976737, 17034376106, 49048531159, 141229616740, 406654474114 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
(1, 4, 11, 32, ...) = INVERT transform of (1, 3, 4, 5, 6, 7, ...).
LINKS
FORMULA
G.f.: (1-x)^2/(1-3*x+x^3).
a(n) = 3*a(n-1) - a(n-3), with a(0)=a(1)=1, a(2)=4.
a(n) = Sum_{alpha = RootOf(1-3*x+x^3)} (-1/9 * (-1+2*alpha^2-2*alpha) * alpha^(-1-n)).
a(n) = A076264(n) - 2*A076264(n-1) + A076264(n-2). - R. J. Mathar, Nov 28 2011
MAPLE
spec := [S, {S=Sequence(Prod(Z, Union(Z, Sequence(Z)), Sequence(Z)))}, unlabeled]: seq(combstruct[count](spec, size=n), n=0..20);
MATHEMATICA
LinearRecurrence[{3, 0, -1}, {1, 1, 4}, 40] (* G. C. Greubel, May 08 2019 *)
PROG
(Python)
TOP = 33
a = [1]*TOP
a[2]=4
for n in range(3, TOP):
print(a[n-3], end=', ')
a[n] = 3*a[n-1] - a[n-3]
# Alex Ratushnyak, Aug 10 2012
(PARI) my(x='x+O('x^40)); Vec((1-x)^2/(1-3*x+x^3)) \\ G. C. Greubel, May 08 2019
(Magma) R<x>:=PowerSeriesRing(Integers(), 40); Coefficients(R!( (1-x)^2/(1-3*x+x^3) )); // G. C. Greubel, May 08 2019
(Sage) ((1-x)^2/(1-3*x+x^3)).series(x, 40).coefficients(x, sparse=False) # G. C. Greubel, May 08 2019
(GAP) a:=[1, 1, 4];; for n in [4..40] do a[n]:=3*a[n-1]-a[n-3]; od; a; # G. C. Greubel, May 08 2019
CROSSREFS
Cf. A215448. First differences of A052536.
Sequence in context: A345029 A268744 A038747 * A183114 A183119 A289246
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 April 19 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)