cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A247171 G.f.: (2*x^2+4*x+3)/((2*x+2)*sqrt(-4*x^3-4*x^2+1))-1/(2*x+2).

This page as a plain text file.
%I A247171 #19 Nov 10 2024 21:46:04
%S A247171 1,1,3,4,11,21,48,106,235,535,1203,2751,6272,14392,33078,76224,176043,
%T A247171 407253,943833,2190397,5090371,11843689,27586793,64320191,150102784,
%U A247171 350586496,819477792,1916861350,4486760870,10508582130,24626700888
%N A247171 G.f.: (2*x^2+4*x+3)/((2*x+2)*sqrt(-4*x^3-4*x^2+1))-1/(2*x+2).
%F A247171 a(n) = n*Sum_{k=1..n} (binomial(2*k,n-k)*binomial(n-k-1,k-1))/k, n>0, a(0)=1.
%F A247171 D-finite with recurrence: 3*n*a(n) +(7*n-8)*a(n-1) +2*(-3*n-2)*a(n-2) +2*(-19*n+35)*a(n-3) +2*(-26*n+81)*a(n-4) +4*(-8*n+35)*a(n-5) +4*(-2*n+11)*a(n-6)=0. - _R. J. Mathar_, Jan 25 2020
%t A247171 CoefficientList[Series[(2 x^2 + 4 x + 3) / ((2 x + 2) Sqrt[-4 x^3 - 4 x^2 + 1]) - 1 / (2 x + 2), {x, 0, 40}], x] (* _Vincenzo Librandi_, Nov 22 2014 *)
%o A247171 (Maxima)
%o A247171 a(n):=if n=0 then 1 else n*sum((binomial(2*k,n-k)*binomial(n-k-1,k-1))/k,k,1,n);
%Y A247171 Cf. A007477.
%K A247171 nonn
%O A247171 0,3
%A A247171 _Vladimir Kruchinin_, Nov 22 2014