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

A076901
E.g.f.: 1/Product_{m>0} (1+(-x)^m/m!).
5
1, 1, 1, 4, 21, 96, 520, 3795, 32053, 284368, 2763876, 30648465, 373339824, 4833294389, 67167087793, 1009753574739, 16215467043493, 275361718915824, 4947532173402532, 94054153646919213, 1882793796608183356, 39528099512321898363, 869222284280777733043
OFFSET
0,4
LINKS
FORMULA
a(n) ~ c * n!, where c = Product_{k>=2} (1 + (-1)^k/k!) = 0.773515873861910082... - Vaclav Kotesovec, Sep 14 2017
MAPLE
A076901 := proc(n) local a, s;
s := proc(n) local d; add((-1)^d*n!/(d*(n/d)!^d),
d = numtheory[divisors](n)) end:
a := proc(n) option remember; local k;
`if`(n=0, 1, add(binomial(n-1, k-1)*s(k)*a(n-k), k = 1..n)) end:
(-1)^n*a(n) end:
seq(A076901(n), n=0..20); # Peter Luschny, Apr 16 2011
MATHEMATICA
nmax = 25; Table[SeriesCoefficient[Product[1/(1 + (-x)^k/k!), {k, 1, n}], {x, 0, n}], {n, 0, nmax}] * Range[0, nmax]! (* Vaclav Kotesovec, Sep 14 2017 *)
CROSSREFS
Sequence in context: A231377 A017967 A292308 * A080043 A240456 A113022
KEYWORD
nonn
AUTHOR
Vladeta Jovovic, Nov 26 2002
STATUS
approved