The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A179327 G.f.: Product_{n>=1} 1/(1-x^n)^((n-1)!). 7
1, 1, 2, 4, 11, 37, 167, 925, 6164, 47630, 418227, 4105887, 44529413, 528398441, 6807143686, 94588353184, 1409913624333, 22437692156739, 379673925360239, 6806484898946045, 128862141334488784, 2569079946351669286, 53797816061915662161, 1180533553597621952193 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
Euler transform of (n-1)!.
G.f.: A(x) = exp( Sum_{n>=1} A062363(n)*x^n/n ) where A062363(n) = Sum_{d|n} d!.
a(n) ~ (n-1)! * (1 + 1/n + 3/n^2 + 11/n^3 + 50/n^4 + 278/n^5 + 1860/n^6 + 14793/n^7 + 138166/n^8 + 1494034/n^9 + 18422609/n^10), for coefficients see A256126. - Vaclav Kotesovec, Mar 14 2015
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 4*x^3 + 11*x^4 + 37*x^5 + 167*x^6 +...
A(x) = 1/((1-x)*(1-x^2)*(1-x^3)^2*(1-x^4)^6*(1-x^5)^24*(1-x^6)^120*...).
log(A(x)) = x + 3*x^2/2 + 7*x^3/3 + 27*x^4/4 + 121*x^5/5 + 729*x^6/6 + 5041*x^7/7 + 40347*x^8/8 +...+ A062363(n)*x^n/n +...
MAPLE
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
add(b(n-i*j, i-1)*binomial((i-1)!+j-1, j), j=0..n/i)))
end:
a:= n-> b(n$2):
seq(a(n), n=0..23); # Alois P. Heinz, Aug 10 2021
MATHEMATICA
nmax=20; CoefficientList[Series[Product[1/(1-x^k)^((k-1)!), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Mar 14 2015 *)
PROG
(PARI) {a(n)=polcoeff(exp(sum(m=1, n, sumdiv(m, d, d!)*x^m/m)+x*O(x^n)), n)}
CROSSREFS
Sequence in context: A173939 A328433 A118182 * A107107 A243565 A101898
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 08 2011
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 May 18 13:50 EDT 2024. Contains 372630 sequences. (Running on oeis4.)