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!)
A321520 Expansion of Product_{k>=1} (1 + (k - 1)!*x^k). 2
1, 1, 1, 3, 8, 32, 152, 882, 5964, 46644, 411564, 4056912, 44097072, 524234448, 6761911968, 94055452128, 1403047948320, 22342552398720, 378256278306240, 6783950610708480, 128480976137122560, 2562250754919421440, 53668564630447910400 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
G.f.: exp(Sum_{k>=1} ( Sum_{d|k} (-1)^(k/d+1)*d*((d - 1)!)^(k/d) ) * x^k/k).
a(n) ~ (n-1)! * (1 + 1/n + 2/n^2 + 7/n^3 + 34/n^4 + 203/n^5 + 1454/n^6 + 12321/n^7 + 121326/n^8 + 1364947/n^9 + 17301550/n^10 + ...). - Vaclav Kotesovec, Nov 13 2018
MAPLE
b:= proc(n, i) option remember; `if`(i*(i+1)/2<n, 0,
`if`(n=0, 1, b(n, i-1)+b(n-i, min(n-i, i-1))*(i-1)!))
end:
a:= n-> b(n$2):
seq(a(n), n=0..24); # Alois P. Heinz, Jul 05 2023
MATHEMATICA
nmax = 22; CoefficientList[Series[Product[(1 + (k - 1)! x^k), {k, 1, nmax}], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[(-1)^(k/d + 1) d ((d - 1)!)^(k/d), {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 22}]
CROSSREFS
Sequence in context: A094610 A064316 A009438 * A321522 A328053 A258690
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 12 2018
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 07:34 EDT 2024. Contains 371905 sequences. (Running on oeis4.)