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!)
A246233 Number of compositions of n into exactly six different parts with distinct multiplicities. 2
2053230379200, 18772392038400, 73402986056400, 257607082933200, 886531102657200, 2509031227903200, 7078865111398080, 19909183290796800, 51039390957675120, 128693357256063600, 326570236365292920, 777083694958410840, 1847217791018559960, 4410908197048833480 (list; graph; refs; listen; history; text; internal format)
OFFSET
56,1
LINKS
MATHEMATICA
$RecursionLimit = 1000; b[n_, i_, s_List] := b[n, i, s] = If[n == 0, Total[s]!, If[i < 1, 0, Expand[ Sum[ If[j > 0 && MemberQ[s, j], 0, If[j == 0, 1, x]*b[n - i*j, i - 1, If[j == 0, s, s~Union~{j}]]/j!], {j, 0, n/i}]]]]; a[n_] := Coefficient[b[n, n, {}], x, 6]; Table[a[n], {n, 56, 80}] (* Jean-François Alcover, Feb 11 2015, after Alois P. Heinz *)
CROSSREFS
Column k=6 of A242896.
Sequence in context: A351431 A274808 A272518 * A234053 A335805 A032756
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Aug 19 2014
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 24 13:19 EDT 2024. Contains 371953 sequences. (Running on oeis4.)