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!)
A300184 Irregular triangle read by rows: row n consists of the coefficients of the expansion of the polynomial (2*x + 2)^n + (x^2 - 1)*(x + 2)^n. 9

%I #48 May 12 2020 20:59:35

%S 0,0,1,0,1,2,1,0,4,7,4,1,0,12,26,19,6,1,0,32,88,88,39,8,1,0,80,272,

%T 360,230,71,10,1,0,192,784,1312,1140,532,123,12,1,0,448,2144,4368,

%U 4872,3164,1162,211,14,1,0,1024,5632,13568,18592,15680,8176,2480,367,16,1,0,2304,14336,39936,65088,67872,46368,20304,5262,655,18,1

%N Irregular triangle read by rows: row n consists of the coefficients of the expansion of the polynomial (2*x + 2)^n + (x^2 - 1)*(x + 2)^n.

%C Let L(n;x) = x*(2*x + 2)^n. Then T(n,k) is obtained from the expansion of the polynomial P(n;x) = (x + 2)*P(n-1;x) + L(n-1;x), with P(0;x) = x^2.

%C Let an n-chain link be the planar diagram that consists of n unknotted circles, linked together in a closed chain. Then T(n,k) is the number of diagrams having k components that are obtained by smoothing each double point (crossing). Kauffman defines the 'smoothing' of a framed 4-graph at a vertex v as "any of the two framed 4-graphs obtained by removing v and repasting the edges" (see links).

%H G. C. Greubel, <a href="/A300184/b300184.txt">Rows n=0..100 of triangle, flattened</a>

%H James Kaiser, Jessica S. Purcell, Clint Rollins, <a href="https://arxiv.org/abs/1107.2865">Volumes of chain links</a>, arXiv:1107.2865 [math.GT], 2011.

%H Louis H. Kauffman, <a href="http://www.worldscientific.com/worldscibooks/10.1142/7784">Introductory Lectures on Knot Theory</a>, Selected Lectures Presented at the Advanced School and Conference on Knot Theory and Its Applications to Physics and Biology, World Scientific, 2012.

%H Louis H. Kauffman and Vassily O. Manturov, <a href="http://www.worldscientific.com/worldscibooks/10.1142/9348">New Ideas in Low Dimensional Topology</a>, World Scientific, 2015.

%H Carolina Medina, Jorge Ramírez-Alfonsín and Gelasio Salazar, <a href="https://arxiv.org/abs/1710.06470">On the number of unknot diagrams</a>, arXiv:1710.06470 [math.CO], 2017.

%H Franck Ramaharo, <a href="https://arxiv.org/abs/1802.07701">Statistics on some classes of knot shadows</a>, arXiv:1802.07701 [math.CO], 2018.

%H Franck Ramaharo, <a href="https://arxiv.org/abs/1805.10569">A generating polynomial for the pretzel knot</a>, arXiv:1805.10680 [math.CO], 2018.

%H Franck Ramaharo, <a href="https://arxiv.org/abs/1807.05256">A one-variable bracket polynomial for some Turk's head knots</a>, arXiv:1807.05256 [math.CO], 2018.

%H Franck Ramaharo, <a href="https://arxiv.org/abs/2002.06672">A bracket polynomial for 2-tangle shadows</a>, arXiv:2002.06672 [math.CO], 2020.

%F T(n,0) = 0, T(n,1) = n*2^(n-1), T(0,2) = 1 and T(n,k) = T(n-1,k-1) + 2*T(n-1,k) + A038208(n-1,k-1).

%F T(n,1) = A001787(n).

%F T(n,n) = A295077(n).

%F T(n,n+1) = A005843(n).

%F G.f.: (x^2 + y*x/(1 - y*(2*x + 2))/(1 - y*(x + 2)).

%e The triangle T(n,k) begins:

%e n\k 0 1 2 3 4 5 6 7 8 9 10 11

%e 0: 0 0 1

%e 1: 0 1 2 1

%e 2: 0 4 7 4 1

%e 3: 0 12 26 19 6 1

%e 4: 0 32 88 88 39 8 1

%e 5: 0 80 272 360 230 71 10 1

%e 6: 0 192 784 1312 1140 532 123 12 1

%e 7: 0 448 2144 4368 4872 3164 1162 211 14 1

%e 8: 0 1024 5632 13568 18592 15680 8176 2480 367 16 1

%e 9: 0 2304 14336 39936 65088 67872 46368 20304 5262 655 18 1

%t With[{nmax = 15}, CoefficientList[CoefficientList[Series[(x^2 + y*x/(1 - y*(2*x + 2)))/(1 - y*(x + 2)), {x, 0, nmax + 2}, {y, 0, nmax}], y], x]] // Flatten (* _G. C. Greubel_, Oct 18 2018 *)

%t Table[SeriesCoefficient[x^2*(x+2)^n + x*Sum[(x+2)^(n-j-1)*(2*x+2)^j, {j, 0, n-1}], {x, 0, k}], {n, 0, 10}, {k, 0, n+2}]//Flatten (* _Michael De Vlieger_, Oct 20 2018 *)

%o (Maxima) T(n, k) := ratcoef((2*x + 2)^n + (x^2 - 1)*(x + 2)^n, x, k)$

%o create_list(T(n, k), n, 0, 10, k, 0, n + 2);

%o (PARI) {T(n,k) = if(k==0, 0, if(k==1, n*2^(n-1), if(k==n+2, 1, T(n-1, k-1) + 2*T(n-1,k) + 2^(n-1)*binomial(n-1,k-1) )))};

%o for(n=0,10, for(k=0,n+2, print1(T(n,k), ", "))) \\ _G. C. Greubel_, Oct 20 2018

%Y Row sums: A000302 (powers of 4).

%Y Cf. A299989, A300192, A300453, A300454, A316659, A316989.

%K nonn,tabf

%O 0,6

%A _Franck Maminirina Ramaharo_, Feb 27 2018

%E New name by _Franck Maminirina Ramaharo_, Oct 17 2018

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 May 10 15:26 EDT 2024. Contains 372387 sequences. (Running on oeis4.)