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!)
A293236 G.f.: Product_{i>0} Sum_{j>=0} (-1)^j*j!*x^(j*i). 4
1, -1, 1, -6, 24, -117, 700, -4947, 39760, -358682, 3594084, -39598866, 475774299, -6191078998, 86742689434, -1301964957707, 20842304366686, -354473010919852, 6382843971860354, -121311619900081996, 2426875912883720386, -50976050128395861672 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) ~ (-1)^n * n! * (1 - 1/n^2 + 3/n^4 + 12/n^5 + 35/n^6 + 61/n^7 - 153/n^8 - 2197/n^9 - 11330/n^10), for coefficients see A293267. - Vaclav Kotesovec, Oct 04 2017
MAPLE
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
add(b(n-i*j, i-1)*j!*(-1)^j, j=0..n/i)))
end:
a:= n-> b(n$2):
seq(a(n), n=0..23); # Alois P. Heinz, Oct 04 2017
MATHEMATICA
m = 22;
CoefficientList[Product[Sum[(-1)^j j! x^(i j), {j, 0, m}], {i, 1, m}] + O[x]^m, x] (* Jean-François Alcover, Nov 15 2020 *)
CROSSREFS
Cf. A293071.
Sequence in context: A273813 A293257 A223752 * A217193 A109583 A352807
KEYWORD
sign
AUTHOR
Seiichi Manyama, Oct 03 2017
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 23 10:29 EDT 2024. Contains 371905 sequences. (Running on oeis4.)