A115202
Fifth column of triangle A115193 (called C(1,2)).
Original entry on oeis.org
1, 9, 67, 477, 3363, 23741, 168451, 1202685, 8641539, 62470141, 454164483, 3319054333, 24371503107, 179736723453, 1330803769347, 9889323810813, 73733148770307, 551423090098173, 4135500638060547
Offset: 0
-
f[n_] := SeriesCoefficient[(1 - 9*x + 14*x^2 - (1 - 5*x + 2*x^2) Sqrt[1 - 8*x])/(16*x^4*(1 + x)), {x, 0, n}];
Table[f[n], {n, 0, 50}] (* G. C. Greubel, Feb 04 2016 *)
A115204
Seventh column of triangle A115193 (called C(1,2)).
Original entry on oeis.org
1, 13, 123, 1037, 8291, 64509, 494595, 3761661, 28486659, 215277565, 1625688067, 12277764093, 92783468547, 701828038653, 5314762113027, 40297495658493, 305941006516227, 2325794003091453, 17704219384479747
Offset: 0
-
f[n_] := SeriesCoefficient[(1 - 13*x + 46*x^2 - 36*x^3 -(1 - 9*x + 18*x^2 - 4*x^3) Sqrt[1 - 8*x])/(64*x^6*(1 + x)), {x, 0, n}];
Table[f[n], {n, 0, 50}] (* G. C. Greubel, Feb 04 2016 *)
A115203
Sixth column of triangle A115193 (called C(1,2)).
Original entry on oeis.org
1, 11, 93, 723, 5437, 40323, 297469, 2191875, 16164861, 119443459, 884719613, 6570430467, 48927031293, 365303660547, 2734459846653, 20518848036867, 154328140087293, 1163305103130627, 8787088644243453
Offset: 0
-
f[n_] := SeriesCoefficient[(1 - 11*x + 28*x^2 - 8*x^3 - (1 - 7*x + 8*x^2) Sqrt[1 - 8*x])/(32*x^5*(1 + x)), {x, 0, n}];
Table[f[n], {n, 0, 50}] (* G. C. Greubel, Feb 04 2016 *)
A084076
Length of list created by n substitutions k -> Range[-1-abs(k), abs(k)+1] starting with {1}.
Original entry on oeis.org
1, 5, 27, 157, 963, 6141, 40323, 270845, 1852419, 12857341, 90337283, 641286141, 4592533507, 33139654653, 240723001347, 1758796578813, 12916805074947, 95300512382973, 706044251602947, 5250379998560253, 39176121681444867
Offset: 0
{1}
{-2,-1,0,1,2}
{-3,-2,-1,0,1,2,3,-2,-1,0,1,2,-1,0,1,-2,-1,0,1,2,-3,-2,-1,0,1,2,3}
Third column (m=2) of triangle
A115193, called C(1, 2).
-
R:=PowerSeriesRing(Rationals(), 40); Coefficients(R!( (1-5*x -(1- x)*Sqrt(1-8*x))/(4*x^2*(1+x)) )); // G. C. Greubel, Nov 23 2022
-
Rest@CoefficientList[InverseSeries[Series[ -((1+5*n+2*n^2-(1+2*n)*Sqrt[1+6*n+n^2] )/(4*n^2)), {n, 0, 28}]], n] or Length/@Flatten/@NestList[ # /. k_Integer :> Range[ -1-Abs[k], Abs[k]+1]&, {1}, 8]
Flatten[{1,RecurrenceTable[{(n+2)*(7*n-5)*a[n] == (7*n-2)*(7*n-1)*a[n-1] + 4*(2*n-1)*(7*n+2)*a[n-2],a[1]==5,a[2]==27},a,{n,20}]}] (* Vaclav Kotesovec, Oct 14 2012 *)
-
{a(n) = my(L); L = [1]; if(n < 0, 0, for(i = 1, n, L = concat([ vector(3 + 2*abs(k), i, i - abs(k) - 2) | k <- L])); #L)}; /* Michael Somos, Nov 23 2022 */
-
def A084076_list(prec):
P. = PowerSeriesRing(ZZ, prec)
return P( (1-5*x -(1-x)*sqrt(1-8*x))/(4*x^2*(1+x)) ).list()
A084076_list(40) # G. C. Greubel, Nov 23 2022
A116880
Generalized Catalan triangle, called CM(1,2).
Original entry on oeis.org
1, 1, 3, 3, 7, 13, 13, 29, 41, 67, 67, 147, 195, 247, 381, 381, 829, 1069, 1277, 1545, 2307, 2307, 4995, 6339, 7379, 8451, 9975, 14589, 14589, 31485, 39549, 45373, 50733, 56829, 66057, 95235, 95235, 205059, 255747, 290691, 320707, 351187, 388099, 446455, 636925
Offset: 0
Triangle begins:
1;
1, 3;
3, 7, 13;
13, 29, 41, 67;
67, 147, 195, 247, 381;
381, 829, 1069, 1277, 1545, 2307;
2307, 4995, 6339, 7379, 8451, 9975, 14589;
-
lim:=8: c:=(1-sqrt(1-8*x))/(4*x): g:=(1+2*x*c)/(1+x): gf1:=g*(x*c)^m: for m from 0 to lim do t:=taylor(gf1, x, lim+1): for n from 0 to lim do a[n,m]:=coeff(t, x, n):od:od: gf2:=g*sum(a[s,k]*(2*c)^k,k=0..s): for s from 0 to lim do t:=taylor(gf2, x, lim+1): for n from 0 to lim do b[n,s]:=coeff(t, x, n):od:od: seq(seq(b[n-s,s],s=0..n),n=0..lim); # Nathaniel Johnston, Apr 30 2011
A116866
Generalized Catalan triangle of Riordan type, called C(1,3).
Original entry on oeis.org
1, 1, 1, 4, 4, 1, 25, 25, 7, 1, 190, 190, 55, 10, 1, 1606, 1606, 472, 94, 13, 1, 14506, 14506, 4300, 898, 142, 16, 1, 137089, 137089, 40861, 8785, 1495, 199, 19, 1, 1338790, 1338790, 400567, 87826, 15655
Offset: 0
[1];[1,1];[4,4,1];[25,25,7,1];[190,190,55,10,1];...
Production matrix begins:
1, 1
3, 3, 1
9, 9, 3, 1
27, 27, 9, 3, 1
81, 81, 27, 9, 3, 1
243, 243, 81, 27, 9, 3, 1
... _Philippe Deléham_, Sep 22 2014
Compare with the row reversed and scaled triangle
A116868 (called Y(1, 3)).
Cf.
A115193 (similar sequence C(1,2)).
A115194
A sequence related to A000108 (Catalan numbers).
Original entry on oeis.org
1, 7, 45, 291, 1917, 12867, 87805, 607747, 4257789, 30140419, 215277565, 1549615107, 11230642173, 81882660867, 600196448253, 4420404117507, 32695452696573, 242766809923587, 1808890431799293, 13521381274681347
Offset: 0
A115197
Convolution of generalized Catalan numbers A064062 (called C(n;2)).
Original entry on oeis.org
1, 2, 7, 32, 169, 974, 5947, 37820, 247885, 1662890, 11362399, 78806936, 553386097, 3926523782, 28108587139, 202764451700, 1472446595221, 10755543924578, 78973277044903, 582558618222416, 4315238786662585
Offset: 0
Showing 1-8 of 8 results.
Comments