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.

A046748 Row sums of triangle A046521.

This page as a plain text file.
%I A046748 #30 Jul 29 2024 06:22:58
%S A046748 1,3,13,61,295,1447,7151,35491,176597,880125,4390901,21920913,
%T A046748 109486993,547018941,2733608905,13662695645,68294088535,341399727335,
%U A046748 1706739347095,8532741458075,42660172763995,213287735579135,1066389745361635,5331765761680895
%N A046748 Row sums of triangle A046521.
%C A046748 Hankel transform is A082761. - _Paul Barry_, Apr 14 2010
%H A046748 G. C. Greubel, <a href="/A046748/b046748.txt">Table of n, a(n) for n = 0..1000</a>
%H A046748 T.-X. He, L. W. Shapiro, <a href="http://dx.doi.org/10.1016/j.laa.2017.06.025">Fuss-Catalan matrices, their weighted sums, and stabilizer subgroups of the Riordan group</a>, Lin. Alg. Applic. 532 (2017) 25-41, p 35.
%F A046748 a(n) = binomial(2*n, n)*Sum_{k=0..n} binomial(n, k)/binomial(2*k, k).
%F A046748 a(n) = 5^n - 2*A046714(n-1), A046714(-1) := 0.
%F A046748 a(n) = 5*a(n-1) - 2*A000108(n-1).
%F A046748 G.f.: sqrt(1-4*x)/(1-5*x).
%F A046748 a(n) = (3*(3*n-2)/n)*a(n-1) - (10*(2*n-3)/n)*a(n-2), n >= 1, a(-1) := 0, a(0)=1 (homogeneous recursion).
%F A046748 a(n) = binomial(2*n,n)*hypergeom([ -n,1 ],[ 1/2 ],-1/4) (hypergeometric 2F1 form).
%F A046748 0 = a(n)*(+400*a(n+1) - 330*a(n+2) + 50*a(n+3)) + a(n+1)*(-30*a(n+1) + 71*a(n+2) - 15*a(n+3)) + a(n+2)*(-3*a(n+2) + a(n+3)) for all n in Z. - _Michael Somos_, May 25 2014
%F A046748 a(n) ~ 5^(n - 1/2). - _Vaclav Kotesovec_, Jul 07 2016
%F A046748 D-finite with recurrence n*a(n) +3*(-3*n+2)*a(n-1) +10*(2*n-3)*a(n-2)=0. - _R. J. Mathar_, Jul 23 2017
%e A046748 G.f. = 1 + 3*x + 13*x^2 + 61*x^3 + 295*x^4 + 1447*x^5 + 7151*x^6 + ...
%t A046748 a[ n_] := SeriesCoefficient[ Sqrt[ 1 - 4 x] / (1 - 5 x), {x, 0, n}]; (* _Michael Somos_, May 25 2014 *)
%t A046748 a[ n_] := Binomial[ 2 n, n] Hypergeometric2F1[ -n, 1, 1/2, -1/4]; (* _Michael Somos_, May 25 2014 *)
%o A046748 (PARI) {a(n) = if( n<0, 0, polcoeff( sqrt( 1 - 4*x + x * O(x^n)) / (1 - 5*x), n))}; /* _Michael Somos_, May 25 2014 */
%o A046748 (Magma)
%o A046748 R<x>:=PowerSeriesRing(Rationals(), 40);
%o A046748 Coefficients(R!( Sqrt(1-4*x)/(1-5*x) )); // _G. C. Greubel_, Jul 28 2024
%o A046748 (SageMath)
%o A046748 def A046748_list(prec):
%o A046748     P.<x> = PowerSeriesRing(ZZ, prec)
%o A046748     return P( sqrt(1-4*x)/(1-5*x) ).list()
%o A046748 A046748_list(40) # _G. C. Greubel_, Jul 28 2024
%Y A046748 Cf. A000108, A046521, A046714, A082761.
%K A046748 easy,nonn
%O A046748 0,2
%A A046748 _Wolfdieter Lang_, Dec 11 1999