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!)
A097175 a(n) = Sum_{k=0..n} binomial(floor((n+1)/2), floor((k+1)/2)) * 4^k. 3
1, 5, 21, 105, 361, 2045, 6141, 38865, 104401, 726245, 1774821, 13394745, 30171961, 244487885, 512923341, 4424729505, 8719696801, 79515368885, 148234845621, 1420480747785, 2519992375561, 25247684340125, 42839870384541 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
a(n) = (5/4)*{1, 17, 17, 289, 289, 4913, ...} - 16*{0, 1, 0, 16, 0, 256, ...} - (1/4)*{1, 1, 1, 1, 1, 1, ...}.
LINKS
FORMULA
G.f.: (1+4*x-17*x^2-48*x^3)/((1-x)*(1-16*x^2)*(1-17*x^2)).
a(n) = (5/8)*((1-sqrt(17))*(-sqrt(17))^n + (1+sqrt(17))*(sqrt(17))^n) - 2*(4^n - (-4)^n) - 1/4.
a(n) = a(n-1) + 33*a(n-2) - 33*a(n-3) - 272*a(n-4) + 272*a(n-5).
MAPLE
seq(coeff(series((1+4*x-17*x^2-48*x^3)/((1-x)*(1-16*x^2)*(1-17*x^2)), x, n+1), x, n), n = 0..30); # G. C. Greubel, Sep 17 2019
MATHEMATICA
CoefficientList[Series[(1+4*x-17*x^2-48*x^3)/((1-x)*(1-16*x^2)*(1-17*x^2)), {x, 0, 30}], x] (* G. C. Greubel, Sep 17 2019 *)
PROG
(PARI) my(x='x+O('x^30)); Vec((1+4*x-17*x^2-48*x^3)/((1-x)*(1-16*x^2)*(1-17*x^2))) \\ G. C. Greubel, Sep 17 2019
(Magma) R<x>:=PowerSeriesRing(Integers(), 30); Coefficients(R!( (1+4*x-17*x^2-48*x^3)/((1-x)*(1-16*x^2)*(1-17*x^2)) )); // G. C. Greubel, Sep 17 2019
(Sage)
def A097175_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P((1+4*x-17*x^2-48*x^3)/((1-x)*(1-16*x^2)*(1-17*x^2))).list()
A097175_list(30) # G. C. Greubel, Sep 17 2019
(GAP) a:=[1, 5, 21, 105, 361];; for n in [6..30] do a[n]:=a[n-1] + 33*a[n-2] - 33*a[n-3] - 272*a[n-4] + 272*a[n-5]; od; a; # G. C. Greubel, Sep 17 2019
CROSSREFS
Sequence in context: A046633 A280623 A203154 * A100284 A337168 A341853
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Jul 30 2004
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)