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!)
A330799 Evaluation of the Motzkin polynomials at 1/2 and normalized with 2^n. 6
1, 3, 13, 59, 285, 1419, 7245, 37659, 198589, 1059371, 5705517, 30976571, 169338781, 931239243, 5147825421, 28587660123, 159406327677, 892113040491, 5009160335085, 28210229053563, 159304938535773, 901845743050635, 5117144607546573, 29096321095698843, 165765778648482621 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} A201641(n,k).
a(n) = 2^n*Sum_{k=0..n} A064189(n,k)/2^k.
a(n) = (-84*(n - 2)*a(n-3) - 2*(8*n + 5)*a(n-2) + (11*n + 5)*a(n-1))/(n + 1).
a(n) = [x^n] 2/(1 - 4*x + sqrt((1 - 6*x)*(2*x + 1))).
a(n) = [x^n] reverse((x^2 + x)/(7*x^2 + 4*x+1))/x.
MAPLE
a := proc(n) option remember; if n < 3 then return [1, 3, 13][n+1] fi;
(-84*(n - 2)*a(n-3) - 2*(8*n + 5)*a(n-2) + (11*n + 5)*a(n-1))/(n + 1) end:
seq(a(n), n=0..24);
# Alternative:
gf := 2/(1 - 4*x + sqrt((1 - 6*x)*(2*x + 1))):
ser := series(gf, x, 30): seq(coeff(ser, x, n), n=0..24);
# Or:
series((x^2+x)/(7*x^2+4*x+1), x, 30): gfun:-seriestoseries(%, 'revogf'):
convert(%, polynom) / x: seq(coeff(%, x, n), n=0..24);
MATHEMATICA
With[{C = Binomial}, A064189[n_, k_] := Sum[C[n, j]* (C[n-j, j+k] - C[n-j, j+k+2]), {j, 0, n}]];
a[n_] := 2^n*Sum[A064189[n, k]/2^k, {k, 0, n}];
Table[a[n], {n, 0, 24}] (* Jean-François Alcover, Sep 25 2022 *)
(* Second program *)
A330799[n_]:= Coefficient[Series[2/(1-4*x+Sqrt[(1-6*x)*(1+2*x)]), {x, 0, 50}], x, n]; Table[A330799[n], {n, 0, 30}] (* G. C. Greubel, Sep 14 2023 *)
PROG
(SageMath)
R.<x> = PowerSeriesRing(QQ)
f = (x^2 + x)/(7*x^2 + 4*x+1)
f.reverse().shift(-1).list()
(Magma)
m:=30;
R<x>:=PowerSeriesRing(Rationals(), m+2);
A330799:= func< n | Coefficient(R!( 2/(1-4*x+Sqrt((1-6*x)*(1+2*x))) ), n) >;
[A330799(n): n in [0..m]]; // G. C. Greubel, Sep 14 2023
CROSSREFS
Sequence in context: A151232 A151233 A151234 * A367057 A317776 A145942
KEYWORD
nonn
AUTHOR
Peter Luschny, Jan 01 2020
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 13:15 EDT 2024. Contains 371948 sequences. (Running on oeis4.)