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!)
A025154 Number of partitions of n into distinct parts >= 9. 4
1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 8, 9, 10, 12, 13, 15, 17, 19, 21, 24, 26, 29, 33, 36, 40, 45, 50, 55, 62, 68, 76, 84, 93, 102, 114, 125, 138, 152, 168, 184, 204, 223, 246, 270, 297, 325, 358, 391, 429, 470, 515, 562, 616, 672, 735 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,20
LINKS
FORMULA
a(n) = A026829(n+8). - R. J. Mathar, Jul 31 2008
G.f.: Product_{j>=9} (1+x^j). - R. J. Mathar, Jul 31 2008
G.f.: Sum_{k>=0} x^(k*(k + 17)/2) / Product_{j=1..k} (1 - x^j). - Ilya Gutkovskiy, Nov 24 2020
MAPLE
b:= proc(n, i) option remember;
`if`(n=0, 1, `if`((i-8)*(i+9)/2<n, 0,
add(b(n-i*j, i-1), j=0..min(1, n/i))))
end:
a:= n-> b(n$2):
seq(a(n), n=0..100); # Alois P. Heinz, Feb 07 2014
MATHEMATICA
d[n_] := Select[IntegerPartitions[n], Max[Length /@ Split@#] == 1 && Min[#] >= 9 &]; Table[d[n], {n, 25}] (* strict partitions, parts >= 9 *)
Table[Length[d[n]], {n, 40}] (* A025154 for n >= 1 *)
(* Clark Kimberling, Mar 07 2014 *)
CROSSREFS
Cf. A025147.
Sequence in context: A025159 A264594 A026829 * A241827 A096401 A264593
KEYWORD
nonn
AUTHOR
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 02:53 EDT 2024. Contains 371696 sequences. (Running on oeis4.)