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!)
A365630 Number of partitions of n with exactly four part sizes. 6
1, 2, 5, 10, 20, 30, 52, 77, 117, 162, 227, 309, 414, 535, 692, 873, 1100, 1369, 1661, 2030, 2438, 2925, 3450, 4108, 4759, 5570, 6440, 7457, 8491, 9798, 11020, 12593, 14125, 15995, 17820, 20074, 22182, 24833, 27379, 30422, 33351, 36996, 40346, 44445, 48336, 53048, 57494 (list; graph; refs; listen; history; text; internal format)
OFFSET
10,2
LINKS
FORMULA
G.f.: Sum_{0<i<j<k<l} x^(i+j+k+l)/( (1-x^i)*(1-x^j)*(1-x^k)*(1-x^l) ).
EXAMPLE
a(11) = 2 because we have 5+3+2+1, 4+3+2+1+1.
MAPLE
# Using function P from A365676:
A365630 := n -> P(n, 4, n): seq(A365630(n), n = 10..56); # Peter Luschny, Sep 15 2023
PROG
(Python)
from sympy.utilities.iterables import partitions
def A365630(n): return sum(1 for p in partitions(n) if len(p)==4) # Chai Wah Wu, Sep 14 2023
CROSSREFS
A diagonal of A060177.
Column k=4 of A116608.
Sequence in context: A000099 A039690 A243938 * A126105 A117486 A263002
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 13 2023
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 May 3 03:26 EDT 2024. Contains 372204 sequences. (Running on oeis4.)