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!)
A131765 Series reversion of x*(1-5x)/(1-x) . 5
1, 4, 36, 404, 5076, 68324, 963396, 14046964, 210062196, 3204118724, 49656709476, 779690085204, 12376867734036, 198301332087204, 3202580085625476, 52080967814444724, 852103170531254196, 14016301507253656964 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The Hankel transform of this sequence is 20^C(n+1,2).
a(n) is the number of small Schröder n-paths with 4 types of up steps (i.e., lattice paths from (0,0) to (2n,0) using steps U1=U2=U3=U4=(1,1), F=(2,0), D=(1,-1), with no F steps on the x-axis). - Yu Hin Au, Dec 05 2019
LINKS
Yu Hin (Gary) Au, Some Properties and Combinatorial Implications of Weighted Small Schröder Numbers, arXiv preprint, arXiv:1912.00555 [math.CO], 2019.
FORMULA
a(n) = Sum_{k=0..n} A086810(n,k)*4^k .
From Paul Barry, Sep 08 2009: (Start)
a(n) = Sum_{k=0..n} C(n+k,2k)*A000108(k)*(-1)^(n-k)*5^k};
a(n) = Sum_{k=0..n} C(n+k,2k)*A000108(k)*(4^(k+1)+(-1)^k)/5. (End)
Recurrence: (n+1)*a(n) = 9*(2*n-1)*a(n-1) - (n-2)*a(n-2) . - Vaclav Kotesovec, Oct 20 2012
a(n) ~ sqrt(40+18*sqrt(5))*(9+4*sqrt(5))^n/(10*sqrt(Pi)*n^(3/2)) . - Vaclav Kotesovec, Oct 20 2012. Equivalently, a(n) ~ phi^(6*n + 3) / (sqrt(2) * 5^(3/4) * sqrt(Pi) * n^(3/2)), where phi = A001622 is the golden ratio. - Vaclav Kotesovec, Dec 07 2021
a(n) = Sum_{k=0..n} (-1)^k*binomial(n, k)*hypergeom([k - n, n + 1], [k + 2], -4]. - Peter Luschny, Jan 08 2018
MATHEMATICA
Table[Sum[Binomial[n+k, 2*k]*Binomial[2*k, k]/(k+1)*(-1)^(n-k)*5^k, {k, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Oct 20 2012 *)
a[n_] := Sum[(-1)^k Binomial[n, k] Hypergeometric2F1[k - n, n + 1, k + 2, -4], {k, 0, n}]; Table[a[n], {n, 0, 17}] (* Peter Luschny, Jan 08 2018 *)
PROG
(PARI) Vec(serreverse(x*(1-5*x)/(1-x) + O(x^30))) \\ Michel Marcus, Jan 08 2018
CROSSREFS
Sequence in context: A239112 A002894 A202828 * A244559 A319175 A317147
KEYWORD
nonn
AUTHOR
Philippe Deléham, Oct 29 2007
EXTENSIONS
Extra terms added by Paul Barry, Sep 08 2009
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 25 13:12 EDT 2024. Contains 371969 sequences. (Running on oeis4.)