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!)
A107894 Sum over the products of factorials of parts in all partitions of n where the sum runs over the number of different parts only. 3
1, 1, 3, 9, 35, 167, 943, 6379, 48945, 429651, 4189865, 45307601, 535518109, 6883110373, 95435065935, 1420468921893, 22577620176887, 381695573051099, 6837601709298811, 129375694813679215, 2578070946813526485, 53964818587883937807, 1183805926540690127573 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ n! * (1 + 1/n + 3/n^2 + 12/n^3 + 65/n^4 + 443/n^5 + 3626/n^6 + 34811/n^7 + 384479/n^8 + 4806098/n^9 + 67109281/n^10), for coefficients see A256124. - Vaclav Kotesovec, Mar 15 2015
EXAMPLE
The partitions of 5 are 1+1+1+1+1, 1+1+1+2, 1+1+3, 1+2+2, 1+4, 2+3, 5, the corresponding products of factorials of parts are (when multiple parts are counted once only) 1!, 1!*2!, 1!*3!, 1!*2!, 1!*4!, 2!*3!, 5! and their sum is a(5) = 167.
MAPLE
b:= proc(n, i) option remember;
`if`(n=0 or i<2, 1, b(n, i-1) +i!*add(b(n-i*j, i-1), j=1..n/i))
end:
a:= n-> b(n, n):
seq(a(n), n=0..30); # Alois P. Heinz, Apr 04 2012
MATHEMATICA
Total[Times@@@(Union/@IntegerPartitions[#]!)]&/@Range[20] (* Harvey P. Dale, Feb 26 2011 *)
b[n_, i_] := b[n, i] = If[n==0 || i<2, 1, b[n, i-1] + i!*Sum[b[n-i*j, i-1], {j, 1, n/i}]]; a[n_] := b[n, n]; Table[a[n], {n, 0, 30}] (* Jean-François Alcover, Oct 29 2015, after Alois P. Heinz *)
CROSSREFS
Sequence in context: A370341 A101880 A222398 * A155858 A000834 A005346
KEYWORD
nonn
AUTHOR
Thomas Wieder, May 26 2005
EXTENSIONS
a(0) inserted and more terms from Alois P. Heinz, Apr 04 2012
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 14 10:41 EDT 2024. Contains 372532 sequences. (Running on oeis4.)