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!)
A287041 Column 1 of A286783. 1
5, 77, 1044, 14784, 227877, 3862305, 71983440, 1469813400, 32718512925, 789901955325, 20578796752500, 575836554270600, 17232413940017325, 549370878062313825, 18591830334684129600, 665771181527890746000, 25154357611638416671125, 1000094581801108086418125, 41741166856778766269392500 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
LINKS
PROG
(PARI)
A286781_ser(N, t='t) = {
my(x='x+O('x^N), y0=1+O('x^N), y1=0, n=1);
while(n++,
y1 = (1 + x*y0 + 2*x^2*y0')*(1 - x*y0*(1-t))/(1-x*y0)^2;
if (y1 == y0, break()); y0 = y1; );
y0;
};
Kol(K, N=20) = {
my(s = A286781_ser(N+K+1, 't+O('t^(K+1))),
p = (1 + x*s + 2*x^2*s')/(1-x*s)^2);
vector(N, n, polcoeff(polcoeff(p, K+n), K));
};
Kol(1)
CROSSREFS
Cf. A286783.
Sequence in context: A277533 A186662 A186660 * A360351 A318236 A009485
KEYWORD
nonn
AUTHOR
Gheorghe Coserea, May 19 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 17 23:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)