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!)
A294161 Column 1 of triangle A291844. 6

%I #7 Nov 12 2017 06:12:50

%S 2,23,292,4068,62861,1075562,20275944,418724047,9418874022,

%T 229535650138,6029910590473,169978358728536,5120224516689050,

%U 164192864744507615,5585978669387706724,200988595873323113508,7626780547253339197109,304431018444668653351250,12752396616363975496913952,559388848572350998030227895

%N Column 1 of triangle A291844.

%H Gheorghe Coserea, <a href="/A294161/b294161.txt">Table of n, a(n) for n = 2..304</a>

%o (PARI)

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

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

%o dn = 1/(-2*t^2*x^4 - (2*t^2+3*t)*x^3 - (2*t+1)*x^2 + (2*t-1)*x + 1));

%o while (n++,

%o y1 = (2*x^2*y'*((-t^2 + t)*x + (-t + 1) + (t^2*x^2 + (t^2 + t)*x + t)*y) +

%o (t*x^2 + t*x)*y^2 - (2*t^2*x^3 + 3*t*x^2 + (-t + 1)*x - 1))*dn;

%o if (y1 == y, break); y = y1; ); y;

%o };

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

%o my(z = A291843_ser(N+1, t));

%o ((1+x)*z - 1)*(1 + t*x)/((1-t + t*(1+x)*z)*x*z^2);

%o };

%o A291844_kol(k, N=20) = {

%o my(s = A291844_ser(N+1+3*k\2, t='t + O('t^(k+1))));

%o Ser(polcoeff(s, k,'t), 'x, N);

%o };

%o Vec(A291844_kol(1))

%Y Cf. A291844.

%K nonn

%O 2,1

%A _Gheorghe Coserea_, Nov 04 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 August 11 22:08 EDT 2024. Contains 375076 sequences. (Running on oeis4.)