OFFSET
0,3
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
FORMULA
Sum_{k=0..n} a(k) * a(n-k) = A387085(n).
G.f.: 1/sqrt( 4*x - 1 + 2*sqrt(1 - 4*x) ).
G.f.: 1/sqrt(1 - 4*x*(-1+g)) where g = 1+x*g^2 is the g.f. of A000108.
G.f.: g/sqrt((-2+3*g) * (2-g)) where g = 1+x*g^2 is the g.f. of A000108.
a(n) ~ 2^(2*n - 1/2) / (Gamma(1/4) * n^(3/4)) * (1 - Gamma(1/4)^2/(16*Pi*sqrt(2*n))). - Vaclav Kotesovec, Aug 20 2025
D-finite with recurrence 3*n*(n-1)*a(n) -2*(n-1)*(10*n-17)*a(n-1) +4*(4*n^2-24*n+29)*a(n-2) +32*(n-2)*(2*n-5)*a(n-3)=0. - R. J. Mathar, Aug 26 2025
MATHEMATICA
nmax = 30; CoefficientList[Series[Sum[Binomial[2*n, n]*x^n, {n, 0, nmax}] / Sqrt[1 + 2*(Sum[Binomial[2*n, n]*x^n, {n, 0, nmax}] - 1)], {x, 0, nmax}], x] (* Vaclav Kotesovec, Aug 20 2025 *)
CoefficientList[Series[1/Sqrt[4*x-1+2*Sqrt[1-4*x]], {x, 0, 25}], x] (* Vincenzo Librandi, Jan 20 2026 *)
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(1/sqrt(4*x-1+2*sqrt(1-4*x)))
(Magma) R<x>:=PowerSeriesRing(Rationals(), 35); Coefficients(R! 1/Sqrt( 4*x - 1 + 2*Sqrt(1 - 4*x) )); // Vincenzo Librandi, Jan 20 2026
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 16 2025
STATUS
approved
