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!)
A364394 G.f. satisfies A(x) = 1 + x/A(x)*(1 + 1/A(x)). 8
1, 2, -6, 34, -238, 1858, -15510, 135490, -1223134, 11320066, -106830502, 1024144482, -9945711566, 97634828354, -967298498358, 9659274283650, -97119829841854, 982391779220482, -9990160542904134, 102074758837531810, -1047391288012377774, 10788532748880319298 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: A(x) = 1/B(-x) where B(x) is the g.f. of A027307.
a(n) = (-1)^(n-1) * (1/n) * Sum_{k=0..n} binomial(n,k) * binomial(2*n+k-2,n-1) = (-1)^(n-1) * A108424(n) for n > 0.
D-finite with recurrence n*(2*n-1)*a(n) +3*(6*n^2-10*n+3)*a(n-1) +(-46*n^2+227*n-279)*a(n-2) +2*(n-3)*(2*n-7)*a(n-3)=0. - R. J. Mathar, Jul 25 2023
a(n) ~ c*(-1)^(n-1)*4^n*2F1([-n, 2*n-1], [n], -1)*n^(-3/2), with c = 1/(4*sqrt(Pi)) = A087197/4. - Stefano Spezia, Oct 21 2023
MAPLE
A364394 := proc(n)
if n = 0 then
1;
else
(-1)^(n-1)*add( binomial(n, k) * binomial(2*n+k-2, n-1), k=0..n)/n ;
end if;
end proc:
seq(A364394(n), n=0..80); # R. J. Mathar, Jul 25 2023
PROG
(PARI) a(n) = if(n==0, 1, (-1)^(n-1)*sum(k=0, n, binomial(n, k)*binomial(2*n+k-2, n-1))/n);
CROSSREFS
Sequence in context: A019029 A019032 A108424 * A328884 A002685 A262391
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jul 22 2023
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 June 28 03:23 EDT 2024. Contains 373761 sequences. (Running on oeis4.)