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!)
A339103 Number of compositions (ordered partitions) of n into distinct parts >= 5. 7
1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 3, 3, 5, 5, 7, 7, 9, 15, 17, 23, 31, 37, 45, 57, 65, 101, 115, 151, 189, 255, 293, 383, 451, 565, 777, 921, 1157, 1469, 1855, 2311, 2865, 3495, 4313, 5231, 7063, 8269, 10509, 12849, 16217, 19829, 25171, 30031, 37485, 45183 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,12
LINKS
FORMULA
G.f.: Sum_{k>=0} k! * x^(k*(k + 9)/2) / Product_{j=1..k} (1 - x^j).
EXAMPLE
a(11) = 3 because we have [11], [6, 5] and [5, 6].
MAPLE
b:= proc(n, i, p) option remember;
`if`(n=0, p!, `if`((i-4)*(i+5)/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..60); # Alois P. Heinz, Nov 23 2020
MATHEMATICA
nmax = 54; CoefficientList[Series[Sum[k! x^(k (k + 9)/2)/Product[1 - x^j, {j, 1, k}], {k, 0, nmax}], {x, 0, nmax}], x]
CROSSREFS
Sequence in context: A073737 A237716 A245147 * A187072 A133908 A111213
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 27 15:36 EDT 2024. Contains 372019 sequences. (Running on oeis4.)