login
A323492
Indices of the sign changes of the sequence c(n) satisfying Sum_{k=0..n} c(k)/(n+k+1) = 0 with c(0)=1.
1
0, 1, 26, 532, 10457
OFFSET
1,3
LINKS
Alexander Kalmynin, Petr Kosenko, Orthorecursive expansion of unity, arXiv:1901.04044 [math.NT], 2019.
EXAMPLE
c(0)=1 and c(1)=-3/2, so the 1st sign change is at n=0, a(1) = 0.
c(1)=-3/2 and c(2)=5/24, so the 2nd sign change is at n=1, a(2) = 1.
PROG
(PARI) lista(nn) = {my(c0 = 1., vc = vector(nn), s = 1); for (n=1, nn, vc[n] = -(2*n+1)*(c0/(n+1) + sum(k=1, n-1, vc[k]/(n+k+1))); if (sign(vc[n]*s) < 0, print1(n-1, ", ")); s = sign(vc[n]); ); }
CROSSREFS
Cf. A323490 (numerators of c(n)).
Sequence in context: A205990 A230247 A058461 * A265461 A257518 A283343
KEYWORD
nonn,more
AUTHOR
Michel Marcus, Jan 16 2019
STATUS
approved