OFFSET
0,3
COMMENTS
G.f. for A129483 is closely related.
EXAMPLE
E.g.f.: A(x) = 1 + x + 2x^2/2! + 7x^3/3! + 26x^4/4! +
101x^5/5! +...
Product formula is illustrated by:
A(x) = [1 + x + x^2/2! + x^3/3! + x^4/4! + x^5/5! +...]*
[1 + x^2/2! + 2x^3/3! + 3x^4/4! + 4x^5/5! + 5x^6/6! +...]*
[1 + x^3/3! + 3x^4/4! + 6x^5/5! + 10x^6/6! + 15x^7/7! +...]*
[1 + x^4/4! + 4x^5/5! + 10x^6/6! + 20x^7/7! + 35x^8/8! +...]*
[1 + x^5/5! + 5x^6/6! + 15x^7/7! + 35x^8/8! + 70x^9/9! +...]*...*
[1 + Sum_{k>=n+1} C(k-1,n)*x^k/k! ]*...
PROG
(PARI) {a(n)=n!*polcoeff(prod(k=0, n, 1+sum(i=1, n-k+1, binomial(k+i-1, k)*x^(k+i)/(k +i)! +x*O(x^n))), n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 17 2007
STATUS
approved