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”).

A193191
G.f.: A(x) = Sum_{n>=0} x^n / Product_{k=1..n} (1 - 5^(n-k)*x^k).
3
1, 1, 2, 7, 53, 887, 32679, 2747187, 508394434, 214213272638, 198419328607654, 418226185357910272, 1937353825293000128681, 20419649837290401081275737, 472970434622490946099542458239, 24925951955494891233466080771797644
OFFSET
0,3
FORMULA
G.f. satisfies: A(5*x) = Sum_{n>=0} 5^n*x^n/Product_{k=1..n} (1-5^n*x^k).
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 7*x^3 + 53*x^4 + 887*x^5 + 32679*x^6 +...
where:
A(x) = 1 + x/(1-x) + x^2/((1-5*x)*(1-x^2)) + x^3/((1-25*x)*(1-5*x^2)*(1-x^3)) + x^4/((1-125*x)*(1-25*x^2)*(1-5*x^3)*(1-x^4)) +...
PROG
(PARI) {a(n)=local(A=1); polcoeff(sum(m=0, n, x^m/prod(k=1, m, 1-5^(m-k)*x^k +x*O(x^n))), n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 17 2011
STATUS
approved