OFFSET
0,2
LINKS
Gheorghe Coserea, Table of n, a(n) for n = 0..201
Robert S. Maier, On Rationally Parametrized Modular Equations, arXiv:math/0611041 [math.NT], 2006.
FORMULA
n^2*a(n) = (88*n^2-132*n+54)*a(n-1) - 500*(2*n-3)^2*a(n-2), with a(0)=1, a(1)=10.
0 = 4*x*(x^2+22*x+125)*y'' + (8*x^2+132*x+500)*y' + (x+10)*y, where y(x) = A(x/-500).
EXAMPLE
A(x) = 1 + 10*x + 230*x^2 + 6500*x^3 + ... is the g.f.
PROG
(PARI)
seq(N) = {
a = vector(N); a[1] = 10; a[2] = 230;
for (n = 3, N, a[n] = ((88*n^2 - 132*n + 54)*a[n-1] - 500*(2*n-3)^2 * a[n-2])/n^2);
concat(1, a);
};
seq(20)
CROSSREFS
KEYWORD
sign
AUTHOR
Gheorghe Coserea, Aug 23 2016
STATUS
approved