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

A113673
Self-convolution 7th power equals A113667, where a(n) = n*A113667(n-1) for n>=1, with a(0)=1.
6
1, 1, 14, 357, 12488, 540155, 27453258, 1591997162, 103362754048, 7415833578300, 582246803894350, 49648781879763836, 4569614321483063496, 451606519694514555917, 47709061981854231868308
OFFSET
0,3
FORMULA
G.f. A(x) satisfies:
(1) A(x) = 1 + x*d/dx[x*A(x)^7],
(2) [x^n] exp( x*A(x)^7 ) * (n + 1 - A(x)) = 0 for n > 0,
(3) [x^n] exp( n * x*A(x)^7 ) * (2 - A(x)) = 0 for n > 0. - Paul D. Hanna, May 27 2018
PROG
(PARI) {a(n)=local(A=1+x*O(x^n)); for(i=1, n, A=1+x*deriv(x*A^7)); polcoeff(A, n, x)}
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 04 2005
STATUS
approved