A225887 a(n) = A212205(2*n + 1).
1, 4, 18, 86, 426, 2162, 11166, 58438, 309042, 1648154, 8851206, 47813790, 259585002, 1415431266, 7747200558, 42545600310, 234346445154, 1294260644906, 7165245015510, 39754745775886, 221009855334426, 1230909476804594, 6867024985408638, 38369226561522086
Offset: 0
Examples
1 + 4*x + 18*x^2 + 86*x^3 + 426*x^4 + 2162*x^5 + 11166*x^6 + 58438*x^7 + ...
Links
- G. C. Greubel, Table of n, a(n) for n = 0..1000
- Paul Barry, Chebyshev moments and Riordan involutions, arXiv:1912.11845 [math.CO], 2019.
- Taras Goy and Mark Shattuck, Hessenberg-Toeplitz Matrix Determinants with Schröder and Fine Number Entries, Carpathian Math. Publ., Vol. 15 (2023), No. 2, 420-436. See Theorems 1 and 2.
- R. Oste and J. Van der Jeugt, Motzkin paths, Motzkin polynomials and recurrence relations, Electronic Journal of Combinatorics 22(2) (2015), #P2.8. Section 7.
Programs
-
Mathematica
a[ n_] := SeriesCoefficient[ 2 / (1 - 5 x + Sqrt[1 - 6 x + x^2]), {x, 0, n}]
-
Maxima
a(n):=sum((k+1)*sum(binomial(j,n-k-j)*3^(-n+k+2*j)*2^(n-k-j)*binomial(n+1,j),j,0,n+1),k,0,n)/(n+1); /* Vladimir Kruchinin, Mar 13 2016 */
-
PARI
{a(n) = if( n<0, 0, polcoeff( 2 / (1 - 5*x + sqrt(1 - 6*x + x^2 + x * O(x^n))), n))}
Formula
G.f.: (-1 + 5*x + sqrt(1 - 6*x + x^2)) / (2 * (x - 6*x^2)) = 2 / (1 - 5*x + sqrt(1 - 6*x + x^2)).
G.f.: A(x) = 1 / (1 - 5*x + (x - 6*x^2) * A(x)) = 1 + x * A(x) * (5 - A(x) * (1 - 6*x)).
BINOMIAL transform of A151090.
Conjecture: (n+1)*a(n) +3*(-4*n-1)*a(n-1) +(37*n-20)*a(n-2) +6*(-n+2)*a(n-3)=0. - R. J. Mathar, May 23 2014
a(n) = Sum_{k=0..n}((k+1)*Sum_{j=0..n+1}(binomial(j,n-k-j)*3^(-n+k+2*j)*2^(n-k-j)*binomial(n+1,j)))/(n+1). - Vladimir Kruchinin, Mar 13 2016
a(n) ~ (1+sqrt(2))^(2*n+5) / (2^(3/4)*sqrt(Pi)*n^(3/2)). - Vaclav Kotesovec, Mar 13 2016
G.f.: 1/(1-3*x -x/(1-x -x/(1-x -x/(1-x - ... )))) (continued fraction) = 1/(1 - 3*x - x*S(x)), where S(x) is the generating function of the large Schröder numbers A001003. - Peter Bala, Apr 23 2017
Comments