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!)
A256092 G.f.: (2*x)/((1-(1-8*x)^(1/4))*(1-8*x)^(3/4)). 1
1, 3, 19, 132, 955, 7068, 53074, 402552, 3075747, 23632620, 182384774, 1412575112, 10972566670, 85442073304, 666717107460, 5211833678832, 40805272682787, 319915465833804, 2511182586525886, 19732752016481000, 155208152657919130, 1221848390114284680 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} binomial(2*k-1,k)*2^(n-k)*binomial(2*n-k-1,n-k)).
a(n) ~ 2^(3*n-2) / (Gamma(3/4) * n^(1/4)) * (1 + Gamma(3/4) / (sqrt(Pi) * n^(1/4)) + Gamma(3/4)^2 / (Pi*sqrt(2*n))). - Vaclav Kotesovec, Mar 15 2015
a(n) = 2^(n-1)*binomial(2*n-1,n)*(1+hypergeom([1/2,-n],[1-2*n],2)) for n >= 2. - Peter Luschny, Mar 15 2015
D-finite with recurrence +n*(n-1)*(n-2)*a(n) -12*(n-1)*(n-2)*(2*n-3)*a(n-1) +12*(n-2)*(16*n^2-64*n+65)*a(n-2) -16*(2*n-5)*(4*n-9)*(4*n-11)*a(n-3)=0. - R. J. Mathar, Jul 27 2022
MATHEMATICA
CoefficientList[Series[(2*x)/((1-(1-8*x)^(1/4))*(1-8*x)^(3/4)), {x, 0, 20}], x] (* Vaclav Kotesovec, Mar 15 2015 *)
PROG
(Maxima)
a(n):=sum(binomial(2*k-1, k)*2^(n-k)*binomial(2*n-k-1, n-k), k, 0, n);
(Sage)
def a(n):
h = hypergeometric([1/2, -n], [1-2*n], 2).simplify() if n != 1 else 2
return 2^(n-1)*binomial(2*n-1, n)*(1+h)
[a(n) for n in range(22)] # Peter Luschny, Mar 15 2015
(PARI) x='x+O('x^50); Vec((2*x)/((1-(1-8*x)^(1/4))*(1-8*x)^(3/4))) \\ G. C. Greubel, Jun 03 2017
CROSSREFS
Sequence in context: A199484 A063395 A226459 * A370159 A369627 A074567
KEYWORD
nonn
AUTHOR
Vladimir Kruchinin, Mar 14 2015
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 July 20 20:19 EDT 2024. Contains 374459 sequences. (Running on oeis4.)