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!)
A027025 a(n) = T(n,n+3), T given by A027023. 3
1, 11, 33, 77, 161, 319, 613, 1157, 2161, 4011, 7417, 13685, 25217, 46431, 85453, 157229, 289249, 532075, 978705, 1800189, 3311137, 6090207, 11201717, 20603253, 37895377, 69700555, 128199401, 235795557, 433695745, 797690943 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,2
LINKS
FORMULA
G.f.: x^3*(1+8*x+2*x^2-3*x^4)/((1-x)^2*(1-x-x^2-x^3)).
a(n) = A000213(n+3) -4*(n+1). - R. J. Mathar, Jun 24 2020
MAPLE
seq(coeff(series(x^4/((1+2*x)*(2*x^3+x^2-2*x+1)), x, n+1), x, n), n = 3..40); # G. C. Greubel, Nov 04 2019
MATHEMATICA
Drop[CoefficientList[Series[x^3*(1+8*x+2*x^2-3*x^4)/((1-x)^2*(1-x-x^2-x^3)), {x, 0, 40}], x], 3] (* or *) LinearRecurrence[{3, -2, 0, -1, 1}, {1, 11, 33, 77, 161}, 40] (* G. C. Greubel, Nov 04 2019 *)
PROG
(PARI) my(x='x+O('x^40)); Vec(x^3*(1+8*x+2*x^2-3*x^4)/((1-x)^2*(1-x-x^2-x^3))) \\ G. C. Greubel, Nov 04 2019
(Magma) R<x>:=PowerSeriesRing(Integers(), 40); Coefficients(R!( x^3*(1+8*x+2*x^2-3*x^4)/((1-x)^2*(1-x-x^2-x^3)) )); // G. C. Greubel, Nov 04 2019
(Sage)
def A077952_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P(x^3*(1+8*x+2*x^2-3*x^4)/((1-x)^2*(1-x-x^2-x^3))).list()
a=A077952_list(40); a[3:] # G. C. Greubel, Nov 04 2019
(GAP) a:=[1, 11, 33, 77, 161];; for n in [6..30] do a[n]:=3*a[n-1]-2*a[n-2]-a[n-4] +a[n-5]; od; a; # G. C. Greubel, Nov 04 2019
CROSSREFS
Sequence in context: A063036 A163673 A212132 * A366135 A120354 A206527
KEYWORD
nonn,easy
AUTHOR
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 23 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)