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!)
A167422 Expansion of (1+x)*c(x), c(x) the g.f. of A000108. 4

%I #33 Mar 24 2022 18:52:14

%S 1,2,3,7,19,56,174,561,1859,6292,21658,75582,266798,950912,3417340,

%T 12369285,45052515,165002460,607283490,2244901890,8331383610,

%U 31030387440,115948830660,434542177290,1632963760974,6151850548776

%N Expansion of (1+x)*c(x), c(x) the g.f. of A000108.

%C Hankel transform is A167423.

%C Apparently a(n) = A071716(n) if n>1. - _R. J. Mathar_, Nov 12 2009

%H G. C. Greubel, <a href="/A167422/b167422.txt">Table of n, a(n) for n = 0..500</a>

%H Murray Tannock, <a href="https://skemman.is/bitstream/1946/25589/1/msc-tannock-2016.pdf">Equivalence classes of mesh patterns with a dominating pattern</a>, MSc Thesis, Reykjavik Univ., May 2016. See Appendix B2

%F a(n) = Sum_{k=0..n} A000108(k)*C(1,n-k).

%F a(0)= 1, a(n) = A005807(n-1) for n>0. - _Philippe Deléham_, Nov 25 2009

%F (n+1)*a(n) +(-3*n+1)*a(n-1) +2*(-2*n+5)*a(n-2)=0, for n>2. - _R. J. Mathar_, Feb 10 2015

%F -(n+1)*(5*n-6)*a(n) +2*(5*n-1)*(2*n-3)*a(n-1)=0. - _R. J. Mathar_, Feb 10 2015

%F The o.g.f. A(x) satisfies [x^n] A(x)^(5*n) = binomial(5*n,2*n) = A001450(n). Cf. A182959. - _Peter Bala_, Oct 04 2015

%p A167422List := proc(m) local A, P, n; A := [1, 2]; P := [1];

%p for n from 1 to m - 2 do P := ListTools:-PartialSums([op(P), A[-1]]);

%p A := [op(A), P[-1]] od; A end: A167422List(26); # _Peter Luschny_, Mar 24 2022

%t Table[If[n < 2, n + 1, Binomial[2 n, n]/(n + 1) + Binomial[2 (n - 1), n - 1]/n], {n, 0, 25}] (* _Michael De Vlieger_, Oct 05 2015 *)

%t CoefficientList[Series[(1 + t)*(1 - Sqrt[1 - 4*t])/(2*t), {t, 0, 50}], t] (* _G. C. Greubel_, Jun 12 2016 *)

%o (PARI) a(n) = if (n<2, n+1, binomial(2*n, n)/(n+1) + binomial(2*(n-1), n-1)/n);

%o vector(50, n, a(n-1)) \\ _Altug Alkan_, Oct 04 2015

%Y Cf. A000108, A001450, A005807, A071716, A167423, A182959.

%K easy,nonn

%O 0,2

%A _Paul Barry_, Nov 03 2009

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 April 16 14:17 EDT 2024. Contains 371740 sequences. (Running on oeis4.)