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!)
A243745 Number of compositions of n with exactly ten occurrences of the largest part. 2
1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 11, 66, 286, 1001, 3003, 8008, 19448, 43758, 92378, 184757, 352727, 646723, 1144484, 1963181, 3276625, 5341050, 8537815, 13454155, 21056035, 33090201, 53057236, 88592087, 157261599, 300524147, 616878471, 1339454952, 3015109174 (list; graph; refs; listen; history; text; internal format)
OFFSET
10,12
LINKS
Joerg Arndt and Alois P. Heinz, Table of n, a(n) for n = 10..650
MAPLE
b:= proc(n, p, i) option remember; `if`(n=0, p!,
`if`(i<1, 0, add(b(n-i*j, p+j, i-1)/j!, j=0..n/i)))
end:
a:= proc(n) local k; k:=10;
add(b(n-i*k, k, i-1)/k!, i=1..n/k)
end:
seq(a(n), n=10..50);
MATHEMATICA
b[n_, p_, i_] := b[n, p, i] = If[n == 0, p!, If[i<1, 0, Sum[b[n-i*j, p+j, i-1]/j!, {j, 0, n/i}]]]; a[n_] := (k=10; Sum[b[n-i*k, k, i-1]/k!, {i, 1, n/k}]); Table[ a[n], {n, 10, 50}] (* Jean-François Alcover, Feb 10 2015, after Maple *)
CROSSREFS
Column k=10 of A238341.
Sequence in context: A008493 A001287 A229891 * A325752 A221143 A022576
KEYWORD
nonn
AUTHOR
Joerg Arndt and Alois P. Heinz, Jun 09 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 16 07:08 EDT 2024. Contains 371698 sequences. (Running on oeis4.)