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!)
A294160 Column 0 of triangle A291844. 5
1, 1, 4, 29, 274, 3145, 42294, 651227, 11295242, 217954807, 4632600152, 107572674851, 2710093290348, 73635362430373, 2146667383237600, 66842659455306545, 2214207331808233390, 77752904712525291757, 2885163506590219810722, 112808263228714108970879 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
PROG
(PARI)
A291843_ser(N, t='t) = {
my(x='x+O('x^N), y=1, y1=0, n=1,
dn = 1/(-2*t^2*x^4 - (2*t^2+3*t)*x^3 - (2*t+1)*x^2 + (2*t-1)*x + 1));
while (n++,
y1 = (2*x^2*y'*((-t^2 + t)*x + (-t + 1) + (t^2*x^2 + (t^2 + t)*x + t)*y) +
(t*x^2 + t*x)*y^2 - (2*t^2*x^3 + 3*t*x^2 + (-t + 1)*x - 1))*dn;
if (y1 == y, break); y = y1; ); y;
};
A291844_ser(N, t='t) = {
my(z = A291843_ser(N+1, t));
((1+x)*z - 1)*(1 + t*x)/((1-t + t*(1+x)*z)*x*z^2);
};
A291844_kol(k, N=20) = {
my(s = A291844_ser(N+1+3*k\2, t='t + O('t^(k+1))));
Ser(polcoeff(s, k, 't), 'x, N);
};
Vec(A291844_kol(0))
CROSSREFS
Cf. A291844.
Sequence in context: A244594 A168238 A370955 * A160885 A182356 A083072
KEYWORD
nonn
AUTHOR
Gheorghe Coserea, Nov 03 2017
STATUS
approved

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 24 19:24 EDT 2024. Contains 371962 sequences. (Running on oeis4.)