login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A286787
Column 2 of A286781.
9
1, 23, 416, 7344, 134613, 2620379, 54636792, 1223392968, 29409134545, 757686550455, 20870680635528, 612964613117960, 19140704352872949, 633710701752022635, 22185391759982205904, 819180275431111135536, 31826528430233802890049, 1298154677953792936043447, 55473817874169725876166480
OFFSET
2,2
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, 't+O('t^(K+1))));
vector(N, n, polcoeff(polcoeff(s, K+n-1), K));
};
Kol(2)
CROSSREFS
Cf. A286781.
Sequence in context: A016197 A199821 A009008 * A226847 A203147 A158453
KEYWORD
nonn
AUTHOR
Gheorghe Coserea, May 16 2017
STATUS
approved