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!)
A286795 Triangle T(n,k) read by rows: coefficients of polynomials P_n(t) defined in Formula section. 5

%I #22 May 26 2017 22:18:00

%S 1,1,4,3,27,31,5,248,357,117,7,2830,4742,2218,314,9,38232,71698,42046,

%T 9258,690,11,593859,1216251,837639,243987,30057,1329,13,10401712,

%U 22877725,17798029,6314177,1071809,81963,2331,15,202601898,472751962,404979234,166620434,35456432,3857904,196532,3812,17,4342263000,10651493718,9869474106,4561150162,1149976242,160594860,11946360,426852,5904,19

%N Triangle T(n,k) read by rows: coefficients of polynomials P_n(t) defined in Formula section.

%C Row n>0 contains n terms.

%C "The series expansion of the solution counts skeleton vertex diagrams with dressed propagators and bare interactions." (see G^2v-skeleton expansion in Molinari link)

%H Gheorghe Coserea, <a href="/A286795/b286795.txt">Rows n=0..123, flattened</a>

%H Luca G. Molinari, Nicola Manini, <a href="https://arxiv.org/abs/cond-mat/0512342">Enumeration of many-body skeleton diagrams</a>, arXiv:cond-mat/0512342 [cond-mat.str-el], 2006.

%F y(x;t) = Sum_{n>=0} P_n(t)*x^n satisfies 0 = 1 - (1 + 2*x*t)*y + x*(1 + 2*t + x*t^2)*y^2 + t*(1-t)*x^2*y^3 + 2*x^2*y*deriv(y,x), with y(0;t)=1, where P_n(t) = Sum_{k=0..n-1} T(n,k)*t^k for n>0.

%F A000699(n+1) = T(n,0), 1 = P_n(-1), A049464(n+1) = P_n(1).

%e A(x;t) = 1 + x + (4 + 3*t)*x^2 + (27 + 31*t + 5*t^2)*x^3 + ...

%e Triangle starts:

%e n\k [0] [1] [2] [3] [4] [5] [6] [7]

%e [0] 1;

%e [1] 1;

%e [2] 4, 3;

%e [3] 27, 31, 5;

%e [4] 248, 357, 117, 7;

%e [5] 2830, 4742, 2218, 314, 9;

%e [6] 38232, 71698, 42046, 9258, 690, 11;

%e [7] 593859, 1216251, 837639, 243987, 30057, 1329, 13;

%e [8] 10401712, 22877725, 17798029, 6314177, 1071809, 81963, 2331, 15;

%e [9] ...

%t max = 11; y0[x_, t_] = 1; y1[x_, t_] = 0; For[n = 1, n <= max, n++, y1[x_, t_] = ((1 + x*(1 + 2 t + x t^2) y0[x, t]^2 + t (1 - t)*x^2*y0[x, t]^3 + 2 x^2 y0[x, t] D[y0[x, t], x]))/(1 + 2 x*t) + O[x]^n // Normal; y0[x_, t_] = y1[x, t]];

%t row[n_] := CoefficientList[Coefficient[y0[x, t], x, n], t];

%t Table[row[n], {n, 0, max - 1}] // Flatten (* _Jean-François Alcover_, May 23 2017, adapted from PARI *)

%o (PARI)

%o A286795_ser(N, t='t) = {

%o my(x='x+O('x^N), y0=1, y1=0, n=1);

%o while(n++,

%o y1 = (1 + x*(1 + 2*t + x*t^2)*y0^2 + t*(1-t)*x^2*y0^3 + 2*x^2*y0*y0');

%o y1 = y1 / (1+2*x*t); if (y1 == y0, break()); y0 = y1;); y0;

%o };

%o concat(apply(p->Vecrev(p), Vec(A286795_ser(11))))

%o \\ test: y=A286795_ser(50); 0 == 1 - (1 + 2*x*t)*y + x*(1 + 2*t + x*t^2)*y^2 + t*(1-t)*x^2*y^3 + 2*x^2*y*y'

%Y Cf. A286781, A286782, A286783, A286784, A286785.

%K nonn,tabf

%O 0,3

%A _Gheorghe Coserea_, May 21 2017

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 25 12:33 EDT 2024. Contains 371969 sequences. (Running on oeis4.)