login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A158094 G.f. Product_{n>=1} (1 + a(n)*x^n) = Sum_{n>=0} n!*x^n. 5
1, 2, 4, 20, 92, 580, 4156, 34372, 314348, 3204116, 35703996, 433587396, 5687955724, 80265513140, 1211781628060, 19497537309028, 333041104402860, 6019819589363348, 114794574818830716, 2303337794614783236 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) ~ n! * (1 - 1/n - 1/n^2 - 4/n^3 - 23/n^4 - 171/n^5 - 1542/n^6 - 16241/n^7 - 194973/n^8 - 2622610/n^9 - 39027573/n^10 - ...), for coefficients see A113869. - Vaclav Kotesovec, Jun 18 2019
MAPLE
A158094:= proc(n)
option remember;
local S;
S:= series(add(k!*x^k, k=0..n)/mul(1+A158094(k)*x^k, k=1..n-1), x, n+1);
coeff(S, x, n)
end; # Robert Israel, Mar 04 2014
MATHEMATICA
a[n_] := a[n] = Module[{s}, s = Series[Sum[k!*x^k, {k, 0, n}]/Product[1+a[k]*x^k, {k, 1, n-1}], {x, 0, n+1}]; Coefficient[s, x, n]]; Table[a[n], {n, 1, 20}] (* Jean-François Alcover, Mar 04 2014, after Maple *)
PROG
(PARI) {a(n)=if(n<1, 0, polcoeff(sum(k=0, n, k!*x^k)/prod(k=1, n-1, 1+a(k)*x^k +x*O(x^n)), n))}
CROSSREFS
Cf. A316084.
Sequence in context: A204438 A325791 A188326 * A108879 A341855 A337038
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 15 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 15:57 EDT 2024. Contains 371961 sequences. (Running on oeis4.)