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!)
A339110 Number of compositions (ordered partitions) of n into distinct parts >= 9. 3
1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 5, 5, 7, 7, 9, 9, 11, 11, 13, 19, 21, 27, 35, 41, 49, 61, 69, 81, 95, 107, 121, 163, 177, 219, 263, 329, 373, 469, 537, 657, 755, 899, 1021, 1219, 1485, 1707, 2027, 2417, 2881, 3445, 4077, 4809, 5735, 6755, 7969, 9307 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,20
LINKS
FORMULA
G.f.: Sum_{k>=0} k! * x^(k*(k + 17)/2) / Product_{j=1..k} (1 - x^j).
EXAMPLE
a(19) = 3 because we have [19], [10, 9] and [9, 10].
MAPLE
b:= proc(n, i, p) option remember;
`if`(n=0, p!, `if`((i-8)*(i+9)/2<n, 0,
add(b(n-i*j, i-1, p+j), j=0..min(1, n/i))))
end:
a:= n-> b(n$2, 0):
seq(a(n), n=0..69); # Alois P. Heinz, Nov 23 2020
MATHEMATICA
nmax = 66; CoefficientList[Series[Sum[k! x^(k (k + 17)/2)/Product[1 - x^j, {j, 1, k}], {k, 0, nmax}], {x, 0, nmax}], x]
CROSSREFS
Sequence in context: A109613 A063196 A351744 * A245150 A339109 A237718
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 23 2020
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 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)